blob: 49449bfbc523cb275b6ef395f00904e4b1d291a6 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001namespace NamespaceA.NamespaceB;
2
3table TableInNestedNS
4{
5 foo:int;
6}
7
8enum EnumInNestedNS:byte
9{
10 A, B, C
11}
12
13struct StructInNestedNS
14{
15 a:int;
16 b:int;
17}