xref: /aosp_15_r20/external/flatbuffers/tests/keyword_test.fbs (revision 890232f25432b36107d06881e0a25aaa6b473652)
1namespace KeywordTest;
2
3enum ABC: int { void, where, stackalloc }
4
5enum public: int { }
6
7table KeywordsInTable {
8  is: ABC = void;
9  private: public;
10  type: int;
11  default: bool = false;
12}
13
14union KeywordsInUnion {
15  static: KeywordsInTable,
16  internal: KeywordsInTable,
17}
18