From 16a91ef90aaf589361e34a10dcee2181ba6cb2ed Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 15 Feb 2017 11:43:26 +0000 Subject: Use declared instead of defined --- test/libsolidity/SolidityNameAndTypeResolution.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/libsolidity') 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) -- cgit