making this purely about parsing...type checking will go in a different PR

This commit is contained in:
RJ Catalano 2015-12-16 13:23:05 -06:00
parent de969945ea
commit df41812442

View File

@ -2743,7 +2743,7 @@ BOOST_AUTO_TEST_CASE(invalid_args_creating_memory_array)
BOOST_CHECK(expectError(text) == Error::Type::TypeError); BOOST_CHECK(expectError(text) == Error::Type::TypeError);
} }
BOOST_AUTO_TEST_CASE(inline_array_declaration_and_passing) /*BOOST_AUTO_TEST_CASE(inline_array_declaration_and_passing)
{ {
char const* text = R"( char const* text = R"(
contract C { contract C {
@ -2755,7 +2755,7 @@ BOOST_AUTO_TEST_CASE(inline_array_declaration_and_passing)
} }
)"; )";
BOOST_CHECK(success(text)); BOOST_CHECK(success(text));
} }*/
BOOST_AUTO_TEST_CASE(invalid_types_in_inline_array) BOOST_AUTO_TEST_CASE(invalid_types_in_inline_array)
{ {