diff options
author | RJ Catalano <catalanor0220@gmail.com> | 2015-12-17 03:35:28 +0800 |
---|---|---|
committer | RJ Catalano <catalanor0220@gmail.com> | 2015-12-17 03:35:28 +0800 |
commit | f7a1860abd2abe63efcdd9318a54af530e30361c (patch) | |
tree | b59f4dc0c67f2761629ffd9ea70390a7bc941738 /test | |
parent | df41812442548a8399f7a7cd0ef6aefcd40740c1 (diff) | |
download | dexon-solidity-f7a1860abd2abe63efcdd9318a54af530e30361c.tar.gz dexon-solidity-f7a1860abd2abe63efcdd9318a54af530e30361c.tar.zst dexon-solidity-f7a1860abd2abe63efcdd9318a54af530e30361c.zip |
forgot about this one...again making this purely about parsing...typechecking will come another day
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityNameAndTypeResolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp index 847f3eaa..1242e801 100644 --- a/test/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp @@ -2755,7 +2755,7 @@ BOOST_AUTO_TEST_CASE(invalid_args_creating_memory_array) } )"; BOOST_CHECK(success(text)); -}*/ +} BOOST_AUTO_TEST_CASE(invalid_types_in_inline_array) { @@ -2767,7 +2767,7 @@ BOOST_AUTO_TEST_CASE(invalid_types_in_inline_array) } )"; BOOST_CHECK(expectError(text) == Error::Type::TypeError); -} +}*/ BOOST_AUTO_TEST_SUITE_END() |