1// Copyright 2018 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5library fidl.examples.ordinals;
6
7using zx;
8
9interface Foo {
10    1: SomeMethod();
11    2: SomeMethodWithAResponse() -> ();
12    3: -> SomeEvent(zx.status response);
13};
14
15interface Bar {
16    4: DoIt();
17};
18
19interface FooAndBarWaitTheresMore : Foo, Bar {
20    5: MoreMoreMore();
21};
22