diff options
author | chriseth <chris@ethereum.org> | 2018-07-11 03:03:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-11 03:03:30 +0800 |
commit | 6567cd3e51a097b7bc8c2a3b37e6fa35bc8a5bbb (patch) | |
tree | 9d692f0c519b3d5004f2a7c7c2ac5aa0bbf72ee7 /test/libsolidity/SolidityEndToEndTest.cpp | |
parent | 0e9415bc31fa379b2c6cc8c8dba6b6ba1305391b (diff) | |
parent | 64abfd3e4a9f2d41946fa999545b98dbdf36ad14 (diff) | |
download | dexon-solidity-6567cd3e51a097b7bc8c2a3b37e6fa35bc8a5bbb.tar.gz dexon-solidity-6567cd3e51a097b7bc8c2a3b37e6fa35bc8a5bbb.tar.zst dexon-solidity-6567cd3e51a097b7bc8c2a3b37e6fa35bc8a5bbb.zip |
Merge pull request #4466 from ethereum/tupleNotEmpty
Disallow empty tuple components.
Diffstat (limited to 'test/libsolidity/SolidityEndToEndTest.cpp')
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index fbc6a9c6..822b8192 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -7916,7 +7916,7 @@ BOOST_AUTO_TEST_CASE(string_tuples) return (h(), "def"); } function h() public returns (string) { - return ("abc",); + return ("abc"); } } )"; |