2021-01-14 13:01:05 +00:00
|
|
|
contract C {
|
|
|
|
function f(bytes calldata data) external pure returns (uint256[] memory) {
|
|
|
|
return abi.decode(data, (uint256[]));
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2021-01-14 13:01:05 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 8364: (116-125): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (115-126): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (116-125): Assertion checker does not yet implement type type(uint256[] memory)
|
|
|
|
// Warning 8364: (115-126): Assertion checker does not yet implement type type(uint256[] memory)
|