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