blob: 77fc42bccf9019259e67fb453d977476951bf9ce [file] [log] [blame]
namespace KeywordTest;
enum ABC: int { void, where, stackalloc }
enum public: int { }
table KeywordsInTable {
is: ABC = void;
private: public;
type: int;
default: bool = false;
}
union KeywordsInUnion {
static: KeywordsInTable,
internal: KeywordsInTable,
}