aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2017-06-09 21:35:27 +0800
committerYoichi Hirai <i@yoichihirai.com>2017-06-13 22:57:08 +0800
commit8775e77305f84117827f1e6165c4d3776c51f667 (patch)
tree978a9aef8a6ac79928ac3cde256f7295bb658d83 /test
parenta7241df4b736bb1743048204d901c1bb1a902d0c (diff)
downloaddexon-solidity-8775e77305f84117827f1e6165c4d3776c51f667.tar.gz
dexon-solidity-8775e77305f84117827f1e6165c4d3776c51f667.tar.zst
dexon-solidity-8775e77305f84117827f1e6165c4d3776c51f667.zip
Add a warning about a varialbe of the name of an instruction
Diffstat (limited to 'test')
-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 438a2b66..ba2ade66 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -5790,7 +5790,7 @@ BOOST_AUTO_TEST_CASE(returndatacopy_as_variable)
char const* text = R"(
contract c { function f() { uint returndatasize; assembly { returndatasize }}}
)";
- CHECK_WARNING_ALLOW_MULTI(text, "shadowed by an insturction of the same name");
+ CHECK_WARNING_ALLOW_MULTI(text, "Variable is shadowed in inline assembly by an instruction of the same name");
}
BOOST_AUTO_TEST_CASE(shadowing_warning_can_be_removed)