| // Copyright 2021 The Fuchsia Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| library banjo.examples.order; | |
| const LL_CONSTANT uint32 = 12345; | |
| const yy_constant int8 = 17; | |
| type ZzStruct = struct { | |
| something int8; | |
| }; | |
| type MmEnum = strict enum : uint32 { | |
| one = 1; | |
| two = 2; | |
| three = 3; | |
| }; | |
| type XxStruct = struct { | |
| field ZzStruct; | |
| field_again MmEnum; | |
| }; | |
| @transport("Banjo") | |
| protocol IiInterface { | |
| DoSomething() -> (); | |
| }; |