solidity/test/libsolidity/smtCheckerTests/abi/abi_decode_1_tuple.sol
2021-08-27 16:25:09 +02:00

11 lines
362 B
Solidity

contract C {
function f(bytes calldata data) external pure returns (uint256[] memory) {
return abi.decode(data, (uint256[]));
}
}
// ====
// SMTEngine: all
// ----
// 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)