dep-protobuf/rust/test/srcsless_library_test_parent.proto
Protobuf Team Bot a86b65d691 Fix regression with src-less proto_library with 0 srcs.
PiperOrigin-RevId: 713316678
2025-01-08 09:32:51 -08:00

14 lines
373 B
Protocol Buffer

edition = "2023";
package srcsless_library_test;
// The purpose of this proto is for a test where a proto_library target that has
// no srcs (an "alias library") can be used in the middle between this parent
// target and this imported file.
import "rust/test/srcsless_library_test_child.proto";
option java_multiple_files = true;
message Parent {
Child child = 1;
}