aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/structs/recursion/struct_definition_indirectly_recursive_dynamic_multi_array.sol
blob: b350782863c7177e8c85ad042adb249ad6b6d824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
contract Test {
    struct S1 {
        S2[1][] x;
    }
    struct S2 {
        S1 x;
    }
    struct T1 {
        T2[][1] x;
    }
    struct T2 {
        T1 x;
    }
    struct R1 {
        R2[][] x;
    }
    struct R2 {
        R1 x;
    }
}
// ----