Add failing test for importing a message from package that looks like a nested type #87

This commit is contained in:
boukeversteegh
2020-06-10 23:29:01 +02:00
parent fb54917f2c
commit 34c34bd15a
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
syntax = "proto3";
package Capitalized;
message Message {
}

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
import "capitalized.proto";
// Tests that we can import from a package with a capital name, that looks like a nested type, but isn't.
message Test {
Capitalized.Message message = 1;
}