mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
17 lines
251 B
Protocol Buffer
17 lines
251 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message A {
|
|
message B {
|
|
message One {
|
|
extensions 1000 to max;
|
|
}
|
|
}
|
|
message C {
|
|
message Two {
|
|
extend B.One {
|
|
Two two = 1000;
|
|
}
|
|
}
|
|
}
|
|
}
|