diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-30 02:22:56 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-10-30 02:22:56 +0800 |
commit | a5ae5f4fe9b5186e47d583dff0b718b362788709 (patch) | |
tree | ffd003a6e0947544a351e75daf32386ba448b0cf | |
parent | 4df3ca25f3fb7e3ac3ee3e23ddb95fb44b5311c2 (diff) | |
parent | 5110ffe3044a6c362ef29b33bc67c6d08c783451 (diff) | |
download | dexon-solidity-a5ae5f4fe9b5186e47d583dff0b718b362788709.tar.gz dexon-solidity-a5ae5f4fe9b5186e47d583dff0b718b362788709.tar.zst dexon-solidity-a5ae5f4fe9b5186e47d583dff0b718b362788709.zip |
Merge remote-tracking branch 'upstream/develop' into stateTests
-rw-r--r-- | solidityParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityParser.cpp b/solidityParser.cpp index 025cd74d..701a6e76 100644 --- a/solidityParser.cpp +++ b/solidityParser.cpp @@ -185,7 +185,7 @@ BOOST_AUTO_TEST_CASE(while_loop) { char const* text = "contract test {\n" " function fun(uint256 a) {\n" - " uint256 x = (1 + 4).member(++67) || true;\n" + " while (true) { uint256 x = 1; break; continue; } x = 9;\n" " }\n" "}\n"; BOOST_CHECK_NO_THROW(parseText(text)); |