2019-11-15 13:48:11 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
pragma experimental "ABIEncoderV2";
|
|
|
|
|
|
|
|
contract C {
|
2020-09-24 09:32:56 +00:00
|
|
|
struct S { uint x; uint[] b; }
|
|
|
|
function f() public pure returns (S memory, bytes memory, uint[][2] memory) {
|
|
|
|
return abi.decode("abc", (S, bytes, uint[][2]));
|
|
|
|
}
|
2019-11-15 13:48:11 +00:00
|
|
|
}
|
|
|
|
// ----
|
2020-09-24 09:32:56 +00:00
|
|
|
// Warning 8364: (231-237): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (231-240): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
|
2020-11-02 14:56:48 +00:00
|
|
|
// Warning 8364: (221-222): Assertion checker does not yet implement type type(struct C.S storage pointer)
|
2020-11-12 09:09:43 +00:00
|
|
|
// Warning 4588: (202-242): Assertion checker does not yet implement this type of function call.
|
2020-11-02 14:56:48 +00:00
|
|
|
// Warning 8364: (231-237): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (231-240): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
|
2020-11-12 09:09:43 +00:00
|
|
|
// Warning 8364: (221-222): Assertion checker does not yet implement type type(struct C.S storage pointer)
|
2020-11-02 14:56:48 +00:00
|
|
|
// Warning 4588: (202-242): Assertion checker does not yet implement this type of function call.
|