| // 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.paramattr; | |
| protocol Foo { | |
| Bar(struct { | |
| param_one uint16; | |
| @very_good | |
| param_two bool; | |
| }); | |
| Blah() -> (struct { | |
| @even_better("this one") | |
| out_one int64; | |
| out_two string; | |
| }); | |
| }; |