blob: 8bffc7c730828208fbf6b108eeae08b238971c42 [file] [log] [blame]
David Hulle544a892017-07-27 02:15:00 +02001struct test1 {
2 1: i32 one
3 2: i32 two // omit
4 3: i32 three
5}
6
7struct test2 {
8 1: i32 one
9 2: test2 two // omit
10 3: i32 three
11}
12
13struct test3 {
14 1: i32 one
15 2: list<test1> two // omit
16}
17
18struct test4 {
19 1: i32 one
20 2: map<i32,test1> two // omit
21}
22