1syntax = "proto2"; 2 3message Foo { 4 extensions 1 to max; 5} 6 7extend Foo { 8 optional int32 foo_ext = 99999; 9} 10 11