blob: a999741d19896fda0b111cef7e6acffa15d66558 [file] [log] [blame]
library test.inheritance;
protocol super {
foo(struct {
s string;
}) -> (struct {
y int64;
});
};
protocol sub {
/// doc comment on compose
compose super;
};