parser: ensure prefix is separated when traversing (#353)

This commit is contained in:
Arun Babu Neelicattu
2022-03-12 10:08:03 +01:00
committed by GitHub
parent 69f4192341
commit 62da35b3ea
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
// https://github.com/danielgtaylor/python-betterproto/issues/344
syntax = "proto3";
package casing_inner_class;
message Test {
message inner_class {
sint32 old_exp = 1;
}
inner_class inner = 2;
}