dvdkruk / protobuf-dt

Automatically exported from code.google.com/p/protobuf-dt
0 stars 0 forks source link

Package scope resolution fails with nested types #167

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Fix for Issue 161 did not implement this use case:

 // test.proto
 syntax = 'proto2';
 package com.google.proto.base.shared;

 message ABC {
   enum Type {
     ONE = 1;
     TWO = 2;
   }
 }

 // test2.proto
 syntax = "proto2";
 package com.google.proto.project.shared;

 import "test.proto";

 message Summary {
   repeated base.shared.ABC.Type type = 1;
 }

Original issue reported on code.google.com by alr...@google.com on 29 Nov 2011 at 2:09

GoogleCodeExporter commented 9 years ago
r881a35af533a

Original comment by alr...@google.com on 29 Nov 2011 at 2:13