aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityEndToEndTest.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-08-24 21:08:31 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-16 19:31:12 +0800
commit6385641f6e461a1964da793956fbe0ef8cddadd3 (patch)
tree249b9de69b5c799bbe35032ff6820780ea790a58 /test/libsolidity/SolidityEndToEndTest.cpp
parent44825d1c1ecef6ea3fa27da6330c12dcf4279fb3 (diff)
downloaddexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.gz
dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.tar.zst
dexon-solidity-6385641f6e461a1964da793956fbe0ef8cddadd3.zip
Fix tests.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r--test/libsolidity/SolidityEndToEndTest.cpp1
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; }