15 lines
202 B
Plaintext
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
|
||
|
}
|