aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/SolidityABIJSON.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-14 00:38:41 +0800
committerGitHub <noreply@github.com>2018-09-14 00:38:41 +0800
commit59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb (patch)
tree76b1734d7360d73825f9737a1c7b530468f4bddd /test/libsolidity/SolidityABIJSON.cpp
parente67f0147998a9e3835ed3ce8bf6a0a0c634216c5 (diff)
parent76812ed5675eb9d9bcd8f939adfec3ba4f02e970 (diff)
downloaddexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar.gz
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar.bz2
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar.lz
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar.xz
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.tar.zst
dexon-solidity-59dbf8f1085b8b92e8b7eb0ce380cbeb642e97eb.zip
Merge pull request #4957 from ethereum/develop_v0425
Merge to release for 0.4.25
Diffstat (limited to 'test/libsolidity/SolidityABIJSON.cpp')
-rw-r--r--test/libsolidity/SolidityABIJSON.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityABIJSON.cpp b/test/libsolidity/SolidityABIJSON.cpp
index 107abc26..3475b018 100644
--- a/test/libsolidity/SolidityABIJSON.cpp
+++ b/test/libsolidity/SolidityABIJSON.cpp
@@ -1036,6 +1036,7 @@ BOOST_AUTO_TEST_CASE(return_structs_with_contracts)
BOOST_AUTO_TEST_CASE(event_structs)
{
char const* text = R"(
+ pragma experimental ABIEncoderV2;
contract C {
struct S { uint a; T[] sub; bytes b; }
struct T { uint[2] x; }