blob: 336ca0f68f1eb36e2d2d76ec5bccedb4991966bf [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;
interface Foo {
1: SomeMethod();
2: SomeMethodWithAResponse() -> ();
3: -> SomeEvent(status response);
};
interface Bar {
4: DoIt();
};
interface FooAndBarWaitTheresMore : Foo, Bar {
5: MoreMoreMore();
};