diff options
author | chriseth <chris@ethereum.org> | 2018-08-09 07:27:22 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-10 03:16:51 +0800 |
commit | a38352569b1112a3f252f18868ead0946c034386 (patch) | |
tree | 36276d2a5c3dc98df518b274ca8d3b76e1c2fd0f /test/libsolidity | |
parent | 0b65b2dff64bdc6d71df94a13f89b7b1119b13b1 (diff) | |
download | dexon-solidity-a38352569b1112a3f252f18868ead0946c034386.tar.gz dexon-solidity-a38352569b1112a3f252f18868ead0946c034386.tar.zst dexon-solidity-a38352569b1112a3f252f18868ead0946c034386.zip |
Tests.
Diffstat (limited to 'test/libsolidity')
-rw-r--r-- | test/libsolidity/syntaxTests/specialFunctions/encodePacked_array_of_structs.sol | 9 | ||||
-rw-r--r-- | test/libsolidity/syntaxTests/specialFunctions/encode_array_of_struct.sol | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/specialFunctions/encodePacked_array_of_structs.sol b/test/libsolidity/syntaxTests/specialFunctions/encodePacked_array_of_structs.sol new file mode 100644 index 00000000..036e108a --- /dev/null +++ b/test/libsolidity/syntaxTests/specialFunctions/encodePacked_array_of_structs.sol @@ -0,0 +1,9 @@ +contract C { + struct S { uint x; } + function f() public pure { + S[] memory s; + abi.encodePacked(s); + } +} +// ---- +// TypeError: (116-117): This type cannot be encoded. diff --git a/test/libsolidity/syntaxTests/specialFunctions/encode_array_of_struct.sol b/test/libsolidity/syntaxTests/specialFunctions/encode_array_of_struct.sol new file mode 100644 index 00000000..7a4d8250 --- /dev/null +++ b/test/libsolidity/syntaxTests/specialFunctions/encode_array_of_struct.sol @@ -0,0 +1,10 @@ +pragma experimental ABIEncoderV2; +contract C { + struct S { uint x; } + function f() public pure { + S[] memory s; + abi.encode(s); + } +} +// ---- +// Warning: (0-33): Experimental features are turned on. Do not use experimental features on live deployments. |