solidity/test/libsolidity/smtCheckerTests/special/abi_decode_memory_v2.sol
Alex Beregszaszi e117c9516e Replace "pragma experimental ABIEncoderV2" in tests where appropriate
And add a few tests for "pragma abicoder".
2021-01-15 19:57:09 +00:00

17 lines
863 B
Solidity

pragma experimental SMTChecker;
pragma abicoder v2;
contract C {
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]));
}
}
// ----
// Warning 8364: (215-221): Assertion checker does not yet implement type type(uint256[] memory)
// Warning 8364: (215-224): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
// Warning 8364: (205-206): Assertion checker does not yet implement type type(struct C.S storage pointer)
// Warning 8364: (215-221): Assertion checker does not yet implement type type(uint256[] memory)
// Warning 8364: (215-224): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
// Warning 8364: (205-206): Assertion checker does not yet implement type type(struct C.S storage pointer)