blob: c5ab56ceef0222e0853295f2a29325ef75a135eb [file] [log] [blame]
library fidl.test.inheritance;
protocol super {
foo(string s) -> (int64 y);
};
protocol sub {
compose super;
};