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