mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 12:05:50 +00:00
* Add codegen test for namespaced unions * [Rust] Handle cross-namespace union use * [Rust] Test namespace handling * [Rust] Drop trailing whitespace in codegen * [Rust] Set flags in generate_code.bat to match .sh * [C#] Add additional namespace test file
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;
|
|
} |