]> asedeno.scripts.mit.edu Git - cl-protobufs.git/commitdiff
According to protoc, this file was bogus; now it works
authorAlejandro R Sedeño <asedeno@google.com>
Tue, 5 Mar 2013 20:52:18 +0000 (15:52 -0500)
committerAlejandro R Sedeño <asedeno@google.com>
Wed, 6 Mar 2013 00:23:01 +0000 (19:23 -0500)
tests/package_test1.proto

index d997350a4df4baefa696572ed810ddb4a072624d..53f2d4c3cf67bbefd4e9bf2987e573a18efe7be4 100644 (file)
@@ -15,20 +15,20 @@ message MessageDefinedInBothPackages {
 }
 
 message MessageWithCrossPackageReference {
-  required MessageInOtherPackage baz = 1;
-  required EnumInOtherPackage bonk = 2;
+  required protobuf_package_unittest2.MessageInOtherPackage baz = 1;
+  required protobuf_package_unittest2.EnumInOtherPackage bonk = 2;
   required MessageDefinedInBothPackages bam = 3;
   required protobuf_package_unittest2.MessageDefinedInBothPackages bing = 5;
 }
 
 message MessageWithCrossPackageExtension {
-  extend MessageInOtherPackage {
+  extend protobuf_package_unittest2.MessageInOtherPackage {
     required int32 baa = 1000;
   }
-  required MessageInOtherPackage boo = 1;
+  required protobuf_package_unittest2.MessageInOtherPackage boo = 1;
 }
 
 service ServiceWithCrossPackageInputOutput {
-  rpc Bloop(MessageInOtherPackage) returns (MessageWithCrossPackageReference);
-  rpc Beep(MessageWithCrossPackageReference) returns (MessageInOtherPackage);
+  rpc Bloop(protobuf_package_unittest2.MessageInOtherPackage) returns (MessageWithCrossPackageReference);
+  rpc Beep(MessageWithCrossPackageReference) returns (protobuf_package_unittest2.MessageInOtherPackage);
 }