flatbuffers/tests/keyword_test.fbs

15 lines
202 B
Plaintext

enum ABC: int { void, where, stackalloc }
enum public: int { }
table KeywordsInTable {
is: ABC = void;
private: public;
}
union KeywordsInUnion {
static: KeywordsInTable,
internal: string
}