blob: 4e878b0c9389303024aaa1dd645f8777996953c5 [file] [log] [blame]
library fidl.test.emptystruct;
struct Empty {
};
protocol EmptyProtocol {
Send(Empty e);
-> Receive(Empty e);
SendAndReceive(Empty e) -> (Empty e);
};