10 lines
103 B
Protocol Buffer
10 lines
103 B
Protocol Buffer
|
|
/* Test that a file without any messages works. */
|
||
|
|
|
||
|
|
syntax = "proto2";
|
||
|
|
|
||
|
|
enum Test {
|
||
|
|
First = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
|