Sign in
fuchsia
/
fuchsia
/
0c00fd3
/
.
/
zircon
/
tools
/
fidl
/
testdata
/
inheritance_with_recursive_decl.test.fidl
blob: 2a60d249cbd27121ac02c03ebd542b7d04f9e441 [
file
] [
log
] [
blame
]
library fidl
.
test
.
json
;
[
FragileBase
]
protocol
Parent
{
First
(
request
<
Parent
>
request
);
};
protocol
Child
{
compose
Parent
;
Second
(
request
<
Parent
>
request
);
};