diff options
author | chriseth <chris@ethereum.org> | 2016-10-24 21:19:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 21:19:13 +0800 |
commit | 2f1310124308cba97e5b14c3f4a089a435320582 (patch) | |
tree | 00ce51ea0dc0c27739bd8a9d5d92ac3a51cfe372 /test | |
parent | cb1fcaf6f65608d6528753f1a998c2cf9f67baab (diff) | |
parent | 57ee3877552372f120de688074451e9b6784d63b (diff) | |
download | dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar.gz dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar.bz2 dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar.lz dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar.xz dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.tar.zst dexon-solidity-2f1310124308cba97e5b14c3f4a089a435320582.zip |
Merge pull request #1251 from ethereum/fixthrow
Fix crash in throw.
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index f024c03e..44ac1511 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -4088,6 +4088,18 @@ BOOST_AUTO_TEST_CASE(using_directive_for_missing_selftype) BOOST_CHECK(expectError(text, false) == Error::Type::TypeError); } +BOOST_AUTO_TEST_CASE(invalid_fixed_point_literal) +{ + char const* text = R"( + contract A { + function a() { + .8E0; + } + } + )"; + BOOST_CHECK(expectError(text, false) == Error::Type::TypeError); +} + BOOST_AUTO_TEST_CASE(shift_constant_left_negative_rvalue) { char const* text = R"( |