summaryrefslogtreecommitdiffstats
path: root/src/jaegertracing/thrift/lib/erl/test/Thrift_omit_with.thrift
blob: 8bffc7c730828208fbf6b108eeae08b238971c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
}