solidity/test/libsolidity/syntaxTests/structs/recursion/multi_struct_composition.sol
2020-11-24 14:57:45 +01:00

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 { }
}
// ----