8 lines
148 B
Protocol Buffer
Raw Normal View History

2019-09-18 11:11:16 +03:00
// Bar.proto
import "Foo.proto";
// really extend Bar but that produces an empty constructor.
extend Foo {
required string buzz = 2;
}