blob: 9150854b2bda6b1b88dee7f765312688a4be97c9 [file] [log] [blame]
Henrique Mendonça15d90422015-06-25 22:31:41 +10001struct Simple {
2 1: string value
3}
4
5struct Complex {
6 1: Simple struct_field
7 2: list<Simple> struct_list_field
8 3: set<Simple> struct_set_field
9 4: map<string,Simple> struct_map_field
10 5: list<set<map<string,list<Simple>>>> struct_nested_containers_field
11 6: map<string, list<map<string,Simple>> > struct_nested_containers_field2
12}