From b996854899f67895859fdf8e49f868ba7bc1b2f9 Mon Sep 17 00:00:00 2001 From: Josh Haberman Date: Mon, 17 Dec 2018 18:18:41 -0800 Subject: Added missing test_cpp.proto. --- tests/test_cpp.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/test_cpp.proto (limited to 'tests') 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; +} -- cgit v1.2.3