• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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}