aboutsummaryrefslogtreecommitdiff
path: root/tests/regression/issue_306/large_extension.proto
blob: c3c8f6fb38f5bfd190c314a9d0701764bd6f39b9 (plain)
1
2
3
4
5
6
7
8
9
10
syntax = "proto2";

message Foo {
  extensions 1 to max;
}

extend Foo {
  optional int32 foo_ext = 99999;
}