]> asedeno.scripts.mit.edu Git - cl-protobufs.git/blob - tests/package_test2.proto
asdf-support: simplify do-process-import calling
[cl-protobufs.git] / tests / package_test2.proto
1 // Free Software published under an MIT-like license. See LICENSE
2 //
3 // Copyright (c) 2012 Google, Inc.  All rights reserved.
4 //
5 // Original author: Ben Wagner
6
7 syntax = "proto2";
8
9 package protobuf_package_unittest2;
10
11 message MessageInOtherPackage {
12   required int32 foo = 1;
13   extensions 1000 to max;
14 }
15
16 enum EnumInOtherPackage {
17   BAR = 1;
18 }
19
20 message MessageDefinedInBothPackages {
21   required string bang = 1;
22 }