blob: 3b94de24e2e8643c933e949bbaef951c1054980e [file] [log] [blame]
// Copyright 2018 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.examples.ordinals;
using zx;
[FragileBase]
interface Foo {
1: SomeMethod();
2: SomeMethodWithAResponse() -> ();
3: -> SomeEvent(zx.status response);
};
[FragileBase]
interface Bar {
4: DoIt();
};
interface FooAndBarWaitTheresMore : Foo, Bar {
5: MoreMoreMore();
};