Sign in
fuchsia
/
fuchsia
/
bbc9ce36f629
/
.
/
tools
/
fidl
/
fidlc
/
testdata
/
empty_struct.test.fidl
blob: 2069c28a0dc5f5df29157b799ab8b76b7c41e53d [
file
] [
log
] [
blame
]
library fidl
.
test
.
emptystruct
;
type
Empty
=
struct
{};
protocol
EmptyProtocol
{
Send
(
struct
{
e
Empty
;
});
->
Receive
(
struct
{
e
Empty
;
});
SendAndReceive
(
struct
{
e
Empty
;
})
->
(
struct
{
e
Empty
;
});
};