Test case for issue #63

This commit is contained in:
boukeversteegh
2020-05-24 20:29:32 +02:00
parent 659ddd9c44
commit 71737cf696
5 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
message Test {
oneof action {
Signal signal = 1;
Move move = 2;
}
}
enum Signal {
PASS = 0;
RESIGN = 1;
}
message Move {
int32 x = 1;
int32 y = 2;
}