solidity/test/libsolidity/smtCheckerTests/functions/abi_encode_functions.sol

10 lines
217 B
Solidity
Raw Normal View History

2021-03-31 15:11:54 +00:00
pragma abicoder v2;
contract C {
function f() public pure returns (bytes memory, bytes memory) {
return (abi.encode(""), abi.encodePacked( "7?8r"));
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----