blueszhangsh / protobuf-dt

Automatically exported from code.google.com/p/protobuf-dt
0 stars 0 forks source link

Groups do not support 'extend message' elements #150

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The following produces syntax errors:

message ABC {
  extensions 1000 to max;
}

message XYZ {
  optional group MyGroup = 1 {
    // Define an extension within a group.
    extend ABC {
      optional int32 extension_in_group = 1000;
    }
  }
}

Original issue reported on code.google.com by alr...@google.com on 3 Nov 2011 at 1:07

GoogleCodeExporter commented 9 years ago
r8cd838c44f5d

Original comment by alr...@google.com on 3 Nov 2011 at 1:13