2015-11-29 20:31:55 +00:00
|
|
|
namespace NamespaceA.NamespaceB;
|
|
|
|
|
|
|
|
table TableInNestedNS
|
|
|
|
{
|
|
|
|
foo:int;
|
|
|
|
}
|
|
|
|
|
2021-01-25 17:33:47 +00:00
|
|
|
union UnionInNestedNS {
|
|
|
|
TableInNestedNS,
|
|
|
|
}
|
|
|
|
|
2015-11-29 20:31:55 +00:00
|
|
|
enum EnumInNestedNS:byte
|
|
|
|
{
|
|
|
|
A, B, C
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StructInNestedNS
|
|
|
|
{
|
|
|
|
a:int;
|
|
|
|
b:int;
|
|
|
|
}
|