1namespace 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}