| library test.mixer; | |
| bits ExampleBits : uint8 { | |
| B = 1; | |
| }; | |
| enum ExampleEnum : uint8 { | |
| E = 1; | |
| }; | |
| struct ExampleStruct { | |
| string s; | |
| }; | |
| table ExampleTable { | |
| 1: string s; | |
| 2: reserved; | |
| }; | |
| union ExampleStrictUnion { | |
| 1: string s; | |
| }; | |
| flexible union ExampleFlexibleUnion { | |
| 1: string s; | |
| }; |