blob: 02fbe57e6f6ceecbdcd6afea2008b5bc3a247948 [file] [log] [blame]
library test.emptystruct;
type Empty = struct {};
protocol EmptyProtocol {
Send(struct {
e Empty;
});
-> Receive(struct {
e Empty;
});
SendAndReceive(struct {
e Empty;
}) -> (struct {
e Empty;
});
};