flatbuffers/tests/namespace_test/namespace_test1.fbs

21 lines
207 B
Plaintext

namespace NamespaceA.NamespaceB;
table TableInNestedNS
{
foo:int;
}
union UnionInNestedNS {
TableInNestedNS,
}
enum EnumInNestedNS:byte
{
A, B, C
}
struct StructInNestedNS
{
a:int;
b:int;
}