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

5 lines
80 B
Solidity
Raw Normal View History

2018-07-12 13:10:08 +00:00
contract Test {
struct S1 { uint a; }
struct S2 { S1[1] x; S1[1] y; }
}