Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typename_mangling/with_package_a.proto')
-rw-r--r--tests/typename_mangling/with_package_a.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/typename_mangling/with_package_a.proto b/tests/typename_mangling/with_package_a.proto
new file mode 100644
index 0000000..4d68341
--- /dev/null
+++ b/tests/typename_mangling/with_package_a.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+
+package package.a;
+
+enum EnumA {
+ VALUE_A_0 = 0;
+ VALUE_A_1 = 1;
+ VALUE_A_2 = 2;
+}
+
+message MessageA {
+ EnumA enum_a_field = 1;
+} \ No newline at end of file