Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame^] | 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 { a:int; } | ||||
9 | |||||
10 | table TableB { | ||||
11 | a:TableA; | ||||
12 | } |