xref: /aosp_15_r20/external/golang-protobuf/internal/testprotos/benchmarks/micro/micro.proto (revision 1c12ee1efe575feb122dbf939ff15148a3b3e8f2)
1*1c12ee1eSDan Willemsen// Copyright 2020 The Go Authors. All rights reserved.
2*1c12ee1eSDan Willemsen// Use of this source code is governed by a BSD-style
3*1c12ee1eSDan Willemsen// license that can be found in the LICENSE file.
4*1c12ee1eSDan Willemsen
5*1c12ee1eSDan Willemsensyntax = "proto2";
6*1c12ee1eSDan Willemsen
7*1c12ee1eSDan Willemsenpackage goproto.proto.benchmarks.microt;
8*1c12ee1eSDan Willemsen
9*1c12ee1eSDan Willemsenoption go_package = "google.golang.org/protobuf/internal/testprotos/benchmarks/micro";
10*1c12ee1eSDan Willemsen
11*1c12ee1eSDan Willemsenmessage SixteenRequired {
12*1c12ee1eSDan Willemsen  required int32 f1 = 1;
13*1c12ee1eSDan Willemsen  required int32 f2 = 2;
14*1c12ee1eSDan Willemsen  required int32 f3 = 3;
15*1c12ee1eSDan Willemsen  required int32 f4 = 4;
16*1c12ee1eSDan Willemsen  required int32 f5 = 5;
17*1c12ee1eSDan Willemsen  required int32 f6 = 6;
18*1c12ee1eSDan Willemsen  required int32 f7 = 7;
19*1c12ee1eSDan Willemsen  required int32 f8 = 8;
20*1c12ee1eSDan Willemsen  required int32 f9 = 9;
21*1c12ee1eSDan Willemsen  required int32 f10 = 10;
22*1c12ee1eSDan Willemsen  required int32 f11 = 11;
23*1c12ee1eSDan Willemsen  required int32 f12 = 12;
24*1c12ee1eSDan Willemsen  required int32 f13 = 13;
25*1c12ee1eSDan Willemsen  required int32 f14 = 14;
26*1c12ee1eSDan Willemsen  required int32 f15 = 15;
27*1c12ee1eSDan Willemsen  required int32 f16 = 16;
28*1c12ee1eSDan Willemsen}
29