Sign in
fuchsia
/
fuchsia
/
HEAD
/
.
/
tools
/
fidl
/
fidlc
/
testdata
/
inheritance_with_recursive_decl.test.fidl
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
;
});
};