Home | History | Annotate | Download | only in sub
      1 include "include_test1.fbs";
      2 include "sub/include_test2.fbs";    // should be skipped
      3 
      4 namespace MyGame.OtherNameSpace;
      5 
      6 enum FromInclude:long { IncludeVal }
      7 
      8 struct Unused {}
      9 
     10 table TableB {
     11   a:TableA;
     12 }
     13