21 lines
207 B
Plaintext
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;
|
|
} |