Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 1 | namespace NamespaceA.NamespaceB; |
2 | |||||
3 | table TableInNestedNS | ||||
4 | { | ||||
5 | foo:int; | ||||
6 | } | ||||
7 | |||||
James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame] | 8 | union UnionInNestedNS { |
9 | TableInNestedNS, | ||||
10 | } | ||||
11 | |||||
Austin Schuh | e89fa2d | 2019-08-14 20:24:23 -0700 | [diff] [blame] | 12 | enum EnumInNestedNS:byte |
13 | { | ||||
14 | A, B, C | ||||
15 | } | ||||
16 | |||||
17 | struct StructInNestedNS | ||||
18 | { | ||||
19 | a:int; | ||||
20 | b:int; | ||||
21 | } |