aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/structs/recursion/struct_definition_indirectly_recursive_dynamic_array2.sol
blob: f20510ca670f7e772e970f80cbb6421145317cb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
contract Test {
    struct MyStructName1 {
        address addr;
        uint256 count;
        MyStructName2 x;
    }
    struct MyStructName2 {
        MyStructName1[] x;
    }
}
// ----