blob: 7c06678dc9c8688ac768d71fef7eaa7b937fd852 [file] [log] [blame]
module interface_ordinals
interface Foo {
1: SomeMethod();
2: SomeMethodWithAResponse() -> ();
3: event SomeEvent(status response);
}
interface Bar {
4: DoIt();
}
interface FooAndBarWaitTheresMore : Foo, Bar {
5: MoreMoreMore();
}