diff options
author | chriseth <chris@ethereum.org> | 2017-08-24 21:08:31 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-16 19:31:12 +0800 |
commit | 6385641f6e461a1964da793956fbe0ef8cddadd3 (patch) | |
tree | 249b9de69b5c799bbe35032ff6820780ea790a58 /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | 44825d1c1ecef6ea3fa27da6330c12dcf4279fb3 (diff) | |
download | dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.gz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.bz2 dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.lz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.xz dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.zst dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.zip |
Fix tests.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 393d3c64..2bdcbd48 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -9685,6 +9685,7 @@ BOOST_AUTO_TEST_CASE(contracts_separated_with_comment) BOOST_AUTO_TEST_CASE(return_structs) { char const* sourceCode = R"( + pragma experimental ABIEncoderV2; contract C { struct S { uint a; T[] sub; } struct T { uint[2] x; } |