blob: 40a89bd998366567ef7a852f321cae5b05190b6c [file] [log] [blame]
// Copyright 2022 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.wire.bindinggroup.test;
/// A protocol specifically designed to test the binding group interface.
closed protocol Testable {
/// Echos a string.
strict Echo(struct {
str string;
}) -> (struct {
str string;
});
/// Causes the other end to close and execute its close handler.
strict Terminate();
};
closed protocol Foo {};
closed protocol Bar {};