solidity/test/libsolidity/syntaxTests/structs/recursion/struct_definition_not_really_recursive.sol

5 lines
74 B
Solidity
Raw Normal View History

2018-03-15 17:19:45 +00:00
contract Test {
struct S1 { uint a; }
struct S2 { S1 x; S1 y; }
}