...

Text file src/github.com/google/flatbuffers/tests/include_test/sub/include_test2.fbs

Documentation: github.com/google/flatbuffers/tests/include_test/sub

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

View as plain text