Skip to content

Commit

Permalink
ci: Add a test data to subdir
Browse files Browse the repository at this point in the history
  • Loading branch information
yoheimuta committed Jul 3, 2022
1 parent 2b07015 commit b8cd9d2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions testdata/subdir/test.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
syntax = "proto3";
import public "other.proto";
option java_package = "com.example.foo";
enum EnumAllowingAlias {
option allow_alias = true;
ENUM_ALLOWING_ALIAS_UNKNOWN = 0;
ENUM_ALLOWING_ALIAS_STARTED = 1;
ENUM_ALLOWING_ALIAS_RUNNING = 2 [(custom_option) = "hello world"];
}
message Outer {
option (my_option).a = true;
message Inner { // Level 2
int64 ival = 1;
}
repeated Inner inner_messages = 2;
EnumAllowingAlias enum_field =3;
map<int32, string> my_map = 4;
}

0 comments on commit b8cd9d2

Please sign in to comment.