Sign in
fuchsia
/
fuchsia
/
bbc9ce36f629
/
.
/
tools
/
fidl
/
fidlc
/
testdata
/
inheritance.test.fidl
blob: f7b06ef234da5980ffa705649b95261baae83bce [
file
] [
log
] [
blame
]
library fidl
.
test
.
inheritance
;
protocol
super
{
foo
(
struct
{
s
string
;
})
->
(
struct
{
y int64
;
});
};
protocol
sub
{
/// doc comment on compose
compose
super
;
};