solidity/test/libsolidity/smtCheckerTests/abi/abi_decode_1_tuple.sol

9 lines
168 B
Solidity
Raw Normal View History

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
// ----