mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
454 B
Solidity
26 lines
454 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
struct S {
|
|
uint a;
|
|
uint b;
|
|
}
|
|
struct T {
|
|
uint a;
|
|
uint b;
|
|
string s;
|
|
}
|
|
function s() public returns (S memory) {
|
|
return S(23, 42);
|
|
}
|
|
function t() public returns (T memory) {
|
|
return T(23, 42, "any");
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// s() -> 23, 42
|
|
// t() -> 0x20, 23, 42, 0x60, 3, "any"
|