Sign in
fuchsia
/
fuchsia
/
refs/heads/sandbox/simonshields/devicetree/hacking
/
.
/
tools
/
fidl
/
fidlc
/
testdata
/
inheritance.test.fidl
blob: a999741d19896fda0b111cef7e6acffa15d66558 [
file
] [
log
] [
blame
] [
edit
]
library test
.
inheritance
;
protocol
super
{
foo
(
struct
{
s
string
;
})
->
(
struct
{
y int64
;
});
};
protocol
sub
{
/// doc comment on compose
compose
super
;
};