blob: f0b9c1669cfa12bd6c9fa8dbf4c6935f9f959f11 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001namespace NamespaceA.NamespaceB;
2
3table TableInNestedNS
4{
5 foo:int;
6}
7
James Kuszmaul8e62b022022-03-22 09:33:25 -07008union UnionInNestedNS {
9 TableInNestedNS,
10}
11
Austin Schuhe89fa2d2019-08-14 20:24:23 -070012enum EnumInNestedNS:byte
13{
14 A, B, C
15}
16
17struct StructInNestedNS
18{
19 a:int;
20 b:int;
21}