blob: 9de02d900e9580092f09115707d81c9258721ccc [file] [log] [blame]
library test.inheritancewithrecursivedecl;
closed protocol Parent {
strict First(resource struct {
request server_end:Parent;
});
};
closed protocol Child {
compose Parent;
strict Second(resource struct {
request server_end:Parent;
});
};