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 | |
Parker Schuh | 971588a | 2017-03-01 22:15:04 -0800 | [diff] [blame] | 7 | import "build_tests/proto_base.proto"; |
| 8 | |
Brian Silverman | eb16fa4 | 2016-02-20 15:29:56 -0500 | [diff] [blame] | 9 | message TestProto { |
| 10 | string s = 1; |
| 11 | int32 i = 2; |
| 12 | // Making sure that well-known protos work. |
| 13 | .google.protobuf.Empty empty = 3; |
Parker Schuh | 971588a | 2017-03-01 22:15:04 -0800 | [diff] [blame] | 14 | // Making sure we can depend on other protos. |
| 15 | BaseProto base_proto = 4; |
Brian Silverman | eb16fa4 | 2016-02-20 15:29:56 -0500 | [diff] [blame] | 16 | } |