summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_cpp.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_cpp.proto b/tests/test_cpp.proto
new file mode 100644
index 0000000..f890350
--- /dev/null
+++ b/tests/test_cpp.proto
@@ -0,0 +1,12 @@
+syntax = "proto2";
+
+package upb.test;
+
+message TestMessage {
+ optional int32 i32 = 1;
+ repeated int32 r_i32 = 2;
+ optional string str = 3;
+ repeated string r_str = 4;
+ optional TestMessage msg = 5;
+ repeated TestMessage r_msg = 6;
+}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback