diff options
author | Chase McDermott <chasemcd1745@tamu.edu> | 2018-08-07 21:19:50 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-15 00:53:06 +0800 |
commit | b000a022f2d7c1057ade755ed1ea8c70380688a5 (patch) | |
tree | 1de31eef468d3dfea1dd9b129889e70f86730a4a /test/libsolidity/SolidityABIJSON.cpp | |
parent | e3b6c5a4bdbc3066889b6898e5e07bfd599a4d37 (diff) | |
download | dexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.tar.gz dexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.tar.zst dexon-solidity-b000a022f2d7c1057ade755ed1ea8c70380688a5.zip |
Update tests
Diffstat (limited to 'test/libsolidity/SolidityABIJSON.cpp')
-rw-r--r-- | test/libsolidity/SolidityABIJSON.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityABIJSON.cpp b/test/libsolidity/SolidityABIJSON.cpp index fdb11504..a8a67bca 100644 --- a/test/libsolidity/SolidityABIJSON.cpp +++ b/test/libsolidity/SolidityABIJSON.cpp @@ -727,7 +727,7 @@ BOOST_AUTO_TEST_CASE(strings_and_arrays) // bug #1801 char const* sourceCode = R"( contract test { - function f(string a, bytes b, uint[] c) external {} + function f(string calldata a, bytes calldata b, uint[] calldata c) external {} } )"; |