Rename test-case to keep it close with other enum test

This commit is contained in:
boukeversteegh
2020-06-24 21:55:31 +02:00
parent bbf40f9694
commit d734206fe5
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
message Test {
enum MyEnum {
ZERO = 0;
ONE = 1;
// TWO = 2;
THREE = 3;
FOUR = 4;
}
MyEnum x = 1;
}