Home | History | Annotate | Download | only in namespace_test
      1 namespace NamespaceA.NamespaceB;
      2 
      3 table TableInNestedNS
      4 {
      5     foo:int;
      6 }
      7 
      8 enum EnumInNestedNS:byte
      9 {
     10 	A, B, C
     11 }
     12 
     13 struct StructInNestedNS
     14 {
     15     a:int;
     16 	b:int;
     17 }