aboutsummaryrefslogtreecommitdiff
path: root/js/test.proto
diff options
context:
space:
mode:
authorAdam Cozzette <acozzette@gmail.com>2016-10-04 13:14:12 -0700
committerGitHub <noreply@github.com>2016-10-04 13:14:12 -0700
commit71e5994b1a0a254c20486fd16cdb33f35e0c0953 (patch)
treecc3eec8458e085a188208bc060a611718639e338 /js/test.proto
parent2d897c8fa2cbe21683263e3eeddd1ab8e0d89091 (diff)
parentc4d70123ac99ff1a0886fc7dfa492010b027210a (diff)
downloadprotobuf-71e5994b1a0a254c20486fd16cdb33f35e0c0953.tar.gz
protobuf-71e5994b1a0a254c20486fd16cdb33f35e0c0953.tar.bz2
protobuf-71e5994b1a0a254c20486fd16cdb33f35e0c0953.zip
Merge pull request #2193 from acozzette/common-js-fix
Fixed references to foreign nested messages with CommonJS-style imports
Diffstat (limited to 'js/test.proto')
-rw-r--r--js/test.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/test.proto b/js/test.proto
index 48cb37e1..db238e1a 100644
--- a/js/test.proto
+++ b/js/test.proto
@@ -260,3 +260,11 @@ enum MapValueEnumNoBinary {
message MapValueMessageNoBinary {
optional int32 foo = 1;
}
+
+message Deeply {
+ message Nested {
+ message Message {
+ optional int32 count = 1;
+ }
+ }
+}