...
1// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5syntax = "proto2";
6
7package goproto.proto.messageset;
8
9option go_package = "google.golang.org/protobuf/internal/testprotos/messageset/messagesetpb";
10
11message MessageSet {
12 option message_set_wire_format = true;
13 extensions 4 to max;
14}
15
16message MessageSetContainer {
17 optional MessageSet message_set = 1;
18}
View as plain text