Sign in
fuchsia
/
fuchsia
/
bbc9ce36f629
/
.
/
tools
/
fidl
/
fidlc
/
testdata
/
inheritance_with_recursive_decl.test.fidl
blob: c0fe77b8e94d30a122955f0d87753e37dcc791a1 [
file
] [
log
] [
blame
]
library fidl
.
test
.
inheritancewithrecursivedecl
;
protocol
Parent
{
First
(
resource
struct
{
request server_end
:
Parent
;
});
};
protocol
Child
{
compose
Parent
;
Second
(
resource
struct
{
request server_end
:
Parent
;
});
};