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

12 lines
610 B
Solidity
Raw Normal View History

2020-11-23 18:06:44 +00:00
pragma experimental SMTChecker;pragma abicoder v2;
contract C {
function f() public pure returns (bytes memory, bytes memory) {
return (abi.encode(""), abi.encodePacked( "7?8r"));
}
}
// ----
// Warning 4588: (162-176): Assertion checker does not yet implement this type of function call.
// Warning 4588: (178-203): Assertion checker does not yet implement this type of function call.
// Warning 4588: (162-176): Assertion checker does not yet implement this type of function call.
// Warning 4588: (178-203): Assertion checker does not yet implement this type of function call.