Brian Silverman | eb16fa4 | 2016-02-20 15:29:56 -0500 | [diff] [blame^] | 1 | syntax = "proto3"; |
2 | |||||
3 | package frc971; | ||||
4 | |||||
5 | import "google/protobuf/empty.proto"; | ||||
6 | |||||
7 | message TestProto { | ||||
8 | string s = 1; | ||||
9 | int32 i = 2; | ||||
10 | // Making sure that well-known protos work. | ||||
11 | .google.protobuf.Empty empty = 3; | ||||
12 | } |