diff options
author | chriseth <c@ethdev.com> | 2015-10-13 20:31:24 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-10-13 20:31:24 +0800 |
commit | 72f7792f8e09b41987ddd493984402891d49238f (patch) | |
tree | baed9ab43931470a8c60b73e6593de605223ee32 /test/libsolidity | |
parent | 13d7bc4ee8effe78dd496064065717af2cbeacc0 (diff) | |
download | dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar.gz dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar.bz2 dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar.lz dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar.xz dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.tar.zst dexon-solidity-72f7792f8e09b41987ddd493984402891d49238f.zip |
Some further test fixes.
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index b4810af7..cc990c1e 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -2419,9 +2419,10 @@ BOOST_AUTO_TEST_CASE(multi_variable_declaration_wildcards_fine) var (,e,g) = two(); var (,,) = three(); var () = none(); + } } )"; - BOOST_CHECK_NO_THROW(parseAndAnalyseReturnError(text)); + BOOST_CHECK_NO_THROW(parseAndAnalyse(text)); } BOOST_AUTO_TEST_CASE(multi_variable_declaration_wildcards_fail_1) |