diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-01-23 23:26:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 23:26:19 +0800 |
commit | c5a501addd2c339621af76db86bcf87c7111fc8d (patch) | |
tree | 9074bf3487eb97271f7ae80887e55da5f17852fc /test | |
parent | 9c278448c8f61f752393b7950df3b47d3d5d0437 (diff) | |
parent | 0cb95ac35e4ae2ce1b9f929c00a2aed282bd4a70 (diff) | |
download | dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar.gz dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar.bz2 dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar.lz dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar.xz dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.tar.zst dexon-solidity-c5a501addd2c339621af76db86bcf87c7111fc8d.zip |
Merge pull request #1599 from ethereum/fixErrorTagLLL
Fix error tag usage in lll.
Diffstat (limited to 'test')
-rw-r--r-- | test/liblll/EndToEndTest.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/liblll/EndToEndTest.cpp b/test/liblll/EndToEndTest.cpp index 77c1f740..c7c1fd3b 100644 --- a/test/liblll/EndToEndTest.cpp +++ b/test/liblll/EndToEndTest.cpp @@ -50,6 +50,13 @@ BOOST_AUTO_TEST_CASE(bare_panic) BOOST_REQUIRE(m_output.empty()); } +BOOST_AUTO_TEST_CASE(panic) +{ + char const* sourceCode = "{ (panic) }"; + compileAndRunWithoutCheck(sourceCode); + BOOST_REQUIRE(m_output.empty()); +} + BOOST_AUTO_TEST_CASE(exp_operator_const) { char const* sourceCode = R"( |