xref: /aosp_15_r20/external/flatbuffers/tests/namespace_test/namespace_test1.fbs (revision 890232f25432b36107d06881e0a25aaa6b473652)
1namespace NamespaceA.NamespaceB;
2
3table TableInNestedNS
4{
5    foo:int;
6}
7
8union UnionInNestedNS {
9    TableInNestedNS,
10}
11
12enum EnumInNestedNS:byte
13{
14	A, B, C
15}
16
17struct StructInNestedNS
18{
19    a:int;
20	b:int;
21}