mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-05 13:08:58 +00:00
* Make Rust keyword escaping more consistent * fix comment * git clang format Co-authored-by: Casper Neo <cneo@google.com>
16 lines
225 B
Plaintext
16 lines
225 B
Plaintext
|
|
enum ABC: int { void, where, stackalloc }
|
|
|
|
enum public: int { }
|
|
|
|
table KeywordsInTable {
|
|
is: ABC = void;
|
|
private: public;
|
|
type: int;
|
|
}
|
|
|
|
union KeywordsInUnion {
|
|
static: KeywordsInTable,
|
|
internal: KeywordsInTable,
|
|
}
|