summaryrefslogtreecommitdiff
path: root/tests/namespace_test/namespace_test1.fbs
blob: f0b9c1669cfa12bd6c9fa8dbf4c6935f9f959f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace NamespaceA.NamespaceB;

table TableInNestedNS
{
    foo:int;
}

union UnionInNestedNS {
    TableInNestedNS,
}

enum EnumInNestedNS:byte
{
	A, B, C
}

struct StructInNestedNS
{
    a:int;
	b:int;
}