| // Copyright 2023 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 fidl.cpp.constraint.protocol.test; | |
| type Bits = strict bits : uint8 { | |
| A = 2; | |
| }; | |
| closed protocol Constraint { | |
| strict Echo(struct { | |
| bits Bits; | |
| }) -> (struct { | |
| bits Bits; | |
| }); | |
| }; |