blob: 367a6504ecbb0a25a7051a0287f6997762bff6dc [file] [log] [blame]
Brian Silvermaneb16fa42016-02-20 15:29:56 -05001syntax = "proto3";
2
3package frc971;
4
5import "google/protobuf/empty.proto";
6
7message TestProto {
8 string s = 1;
9 int32 i = 2;
10 // Making sure that well-known protos work.
11 .google.protobuf.Empty empty = 3;
12}