aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity
diff options
context:
space:
mode:
authorFederico Bond <federicobond@gmail.com>2017-10-26 22:02:36 +0800
committerFederico Bond <federicobond@gmail.com>2018-02-03 01:09:32 +0800
commit600e66e6057b1d6992affaf6fa646ce865d17b73 (patch)
tree277c812247d2a66b9016fa64a9497a88d42a67e4 /test/libsolidity
parenteba46a65fc55ab598210d2bc2e209809d59f6fbd (diff)
downloaddexon-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.cpp2
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)