mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
17 lines
248 B
Plaintext
17 lines
248 B
Plaintext
namespace KeywordTest;
|
|
|
|
enum ABC: int { void, where, stackalloc }
|
|
|
|
enum public: int { }
|
|
|
|
table KeywordsInTable {
|
|
is: ABC = void;
|
|
private: public;
|
|
type: int;
|
|
}
|
|
|
|
union KeywordsInUnion {
|
|
static: KeywordsInTable,
|
|
internal: KeywordsInTable,
|
|
}
|