Home | History | Annotate | Download | only in issue_306
      1 syntax = "proto2";
      2 
      3 message Foo {
      4   extensions 1 to max;
      5 }
      6 
      7 extend Foo {
      8   optional int32 foo_ext = 99999;
      9 }
     10 
     11