diff options
author | Federico Bond <federicobond@gmail.com> | 2017-10-26 22:02:36 +0800 |
---|---|---|
committer | Federico Bond <federicobond@gmail.com> | 2018-02-03 01:09:32 +0800 |
commit | 600e66e6057b1d6992affaf6fa646ce865d17b73 (patch) | |
tree | 277c812247d2a66b9016fa64a9497a88d42a67e4 /test/libsolidity | |
parent | eba46a65fc55ab598210d2bc2e209809d59f6fbd (diff) | |
download | dexon-solidity-600e66e6057b1d6992affaf6fa646ce865d17b73.tar.gz dexon-solidity-600e66e6057b1d6992affaf6fa646ce865d17b73.tar.zst dexon-solidity-600e66e6057b1d6992affaf6fa646ce865d17b73.zip |
Replace some fatal errors when resolving references with normal ones
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index eb6a440e..65f5a647 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -4050,7 +4050,7 @@ BOOST_AUTO_TEST_CASE(varM_disqualified_as_keyword) } } )"; - CHECK_ERROR(text, DeclarationError, "Identifier not found or not unique."); + CHECK_ERROR_ALLOW_MULTI(text, DeclarationError, "Identifier not found or not unique."); } BOOST_AUTO_TEST_CASE(modifier_is_not_a_valid_typename) |