test input: use explicit package declaration (#345)

This commit is contained in:
Arun Babu Neelicattu
2022-03-03 14:34:53 +01:00
committed by GitHub
parent 74205e3319
commit bd69862a02
78 changed files with 141 additions and 37 deletions

View File

@@ -1,6 +1,6 @@
syntax = "proto3";
package child;
package import_root_package_from_child.child;
import "root.proto";

View File

@@ -1,5 +1,7 @@
syntax = "proto3";
package import_root_package_from_child;
message RootMessage {
}