mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
589 B
Solidity
15 lines
589 B
Solidity
pragma experimental SMTChecker;
|
|
pragma experimental "ABIEncoderV2";
|
|
|
|
contract C {
|
|
struct S { uint x; uint[] b; }
|
|
function f() public pure returns (S memory, bytes memory) {
|
|
return abi.decode("abc", (S, bytes));
|
|
}
|
|
}
|
|
// ----
|
|
// Warning: (151-159): Assertion checker does not yet support the type of this variable.
|
|
// Warning: (188-191): Assertion checker does not yet implement type abi
|
|
// Warning: (207-208): Assertion checker does not yet implement type type(struct C.S storage pointer)
|
|
// Warning: (188-217): Assertion checker does not yet implement this type of function call.
|