1
0
Fork 0
python-aristaproto/tests/inputs/import_root_package_from_child/child.proto

12 lines
197 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package import_root_package_from_child.child;
import "root.proto";
// Verify that we can import root message from child package
message Test {
RootMessage message = 1;
}