aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-15 19:43:26 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-18 01:06:52 +0800
commit16a91ef90aaf589361e34a10dcee2181ba6cb2ed (patch)
tree52058959e6e538ac0533b3afeccee53cee657cd8 /test
parentf8da9a8fd5e2c709aa940402155faa30139ec9e1 (diff)
downloaddexon-solidity-16a91ef90aaf589361e34a10dcee2181ba6cb2ed.tar.gz
dexon-solidity-16a91ef90aaf589361e34a10dcee2181ba6cb2ed.tar.zst
dexon-solidity-16a91ef90aaf589361e34a10dcee2181ba6cb2ed.zip
Use declared instead of defined
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 0861dded..c30bb011 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -5408,7 +5408,7 @@ BOOST_AUTO_TEST_CASE(interface_variables)
uint a;
}
)";
- CHECK_ERROR(text, TypeError, "Variables cannot be defined in interfaces");
+ CHECK_ERROR(text, TypeError, "Variables cannot be declared in interfaces");
}
BOOST_AUTO_TEST_CASE(using_interface)