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:
authorJosh Strohminger <joshstrohminger@users.noreply.github.com>2023-08-17 01:41:39 +0300
committerPetteri Aimonen <jpa@github.mail.kapsi.fi>2023-08-17 14:14:39 +0300
commitf6c0f91ac4e0ab5f981e70faff21cf9e5f5a587f (patch)
tree8c39d5722c58ce63c387f7c1b6a4f0aa18950bc2 /tests/typename_mangling/with_package_a.proto
parent4838ca75349073e43c9634a0f1af6ecf49ea4511 (diff)
Add test for stripping package names across dependent proto files
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