mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
235 B
Solidity
12 lines
235 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
struct S { uint x; uint[] b; }
|
|
function f() public pure returns (S memory, bytes memory, uint[][2] memory) {
|
|
return abi.decode("abc", (S, bytes, uint[][2]));
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|