blob: 8bffc7c730828208fbf6b108eeae08b238971c42 [file] [log] [blame]
struct test1 {
1: i32 one
2: i32 two // omit
3: i32 three
}
struct test2 {
1: i32 one
2: test2 two // omit
3: i32 three
}
struct test3 {
1: i32 one
2: list<test1> two // omit
}
struct test4 {
1: i32 one
2: map<i32,test1> two // omit
}