Test case for issue #61

This commit is contained in:
boukeversteegh 2020-05-24 20:27:12 +02:00
parent cdf7645722
commit 5b6997870a
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,9 @@
syntax = "proto3";
import "sibling.proto";
// Tests generated imports when a message in the root package refers to another message in the root package
message Test {
SiblingMessage sibling = 1;
}

View File

@ -0,0 +1,5 @@
syntax = "proto3";
message SiblingMessage {
}