blob: 7ea12289bb99e7956b6b65d978c5b6adfbfab9a9 [file] [log] [blame]
// Copyright 2019 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.
// We want a test that loads the protocol below before the protocol that is
// composed into it, and another that loads it after the protocol that is
// composed into it, to make sure that both have the same behavior. The only way
// to control the order of protocol loading in fidlcat is to control the order of
// library loading. This protocol, therefore, needs to be a separate library.
library test.fidlcat.composedinto;
using test.fidlcat.examples;
// For testing what happens when fidlcat encounters a composed method.
protocol ComposedParamProtocol {
compose test.fidlcat.examples.ParamProtocol;
};