blob: 56fa407fdc63465830952fb3324dca53a0631852 [file] [log] [blame]
// 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;
});
};