mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
189 B
Solidity
15 lines
189 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
struct T { U u; V v; }
|
|
|
|
struct U { W w; }
|
|
|
|
struct V { W w; }
|
|
|
|
struct W { uint x; }
|
|
|
|
function f(T memory) public pure { }
|
|
}
|
|
// ----
|