summaryrefslogtreecommitdiff
path: root/tests/test.proto
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2013-12-20 17:40:40 -0800
committerJosh Haberman <jhaberman@gmail.com>2013-12-20 17:40:40 -0800
commitce9bba3cb5409844f8f3d7dcc235a9ea30cad090 (patch)
tree6c4e0a7c023c790a278f3616c749280c8da205af /tests/test.proto
parentaa8db6ab5ea18848247b8c4ac4715cf344941e94 (diff)
Sync from Google-internal development.
Diffstat (limited to 'tests/test.proto')
-rw-r--r--tests/test.proto14
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/test.proto b/tests/test.proto
index e634ed2..40e185b 100644
--- a/tests/test.proto
+++ b/tests/test.proto
@@ -38,10 +38,12 @@ message F {
// A proto with a bunch of simple primitives.
message SimplePrimitives {
- optional fixed64 a = 1;
- optional fixed32 b = 2;
- optional double c = 3;
- optional float d = 5;
- //optional sint64 e = 6;
- //optional sint32 f = 7;
+ optional fixed64 u64 = 1;
+ optional fixed32 u32 = 2;
+ optional double dbl = 3;
+ optional float flt = 5;
+ optional sint64 i64 = 6;
+ optional sint32 i32 = 7;
+ optional bool b = 8;
+ optional string str = 9;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback