2019-05-14 21:10:56 +00:00
|
|
|
pragma experimental SMTChecker;pragma experimental ABIEncoderV2;
|
|
|
|
contract C {
|
|
|
|
function f() public pure returns (bytes memory, bytes memory) {
|
|
|
|
return (abi.encode(""), abi.encodePacked( "7?8r"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2019-11-15 13:48:11 +00:00
|
|
|
// Warning: (162-165): Assertion checker does not yet implement type abi
|
2019-05-14 21:10:56 +00:00
|
|
|
// Warning: (162-176): Assertion checker does not yet implement this type of function call.
|
2019-11-15 13:48:11 +00:00
|
|
|
// Warning: (178-181): Assertion checker does not yet implement type abi
|
2019-05-14 21:10:56 +00:00
|
|
|
// Warning: (178-203): Assertion checker does not yet implement this type of function call.
|