2020-12-16 21:14:52 +00:00
|
|
|
pragma abicoder v2;
|
2019-11-15 13:48:11 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2019-11-15 13:48:11 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 8364: (183-189): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (183-192): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
|
|
|
|
// Warning 8364: (173-174): Assertion checker does not yet implement type type(struct C.S storage pointer)
|
|
|
|
// Warning 8364: (183-189): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (183-192): Assertion checker does not yet implement type type(uint256[] memory[2] memory)
|
|
|
|
// Warning 8364: (173-174): Assertion checker does not yet implement type type(struct C.S storage pointer)
|