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;
});
};