Use declared instead of defined

This commit is contained in:
Alex Beregszaszi
2017-03-17 17:06:52 +00:00
parent f8da9a8fd5
commit 16a91ef90a
2 changed files with 2 additions and 2 deletions
@@ -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)