mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-05 04:58:57 +00:00
11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
include "namespace_test1.fbs";
|
|
|
|
namespace NamespaceA;
|
|
|
|
table TableInFirstNS
|
|
{
|
|
foo_table:NamespaceB.TableInNestedNS;
|
|
foo_enum:NamespaceB.EnumInNestedNS;
|
|
foo_struct:NamespaceB.StructInNestedNS;
|
|
}
|