blob: d0e6fe2e9bc61561f8e13fa6ef737a88ec38abc5 [file] [log] [blame]
Brian Silvermaneb16fa42016-02-20 15:29:56 -05001syntax = "proto3";
2
3package frc971;
4
5import "google/protobuf/empty.proto";
6
Parker Schuh971588a2017-03-01 22:15:04 -08007import "build_tests/proto_base.proto";
8
Brian Silvermaneb16fa42016-02-20 15:29:56 -05009message TestProto {
10 string s = 1;
11 int32 i = 2;
12 // Making sure that well-known protos work.
13 .google.protobuf.Empty empty = 3;
Parker Schuh971588a2017-03-01 22:15:04 -080014 // Making sure we can depend on other protos.
15 BaseProto base_proto = 4;
Brian Silvermaneb16fa42016-02-20 15:29:56 -050016}