summaryrefslogtreecommitdiffstats
path: root/tests/extensions/extensions.proto
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-04-01 16:47:53 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2014-04-01 16:47:53 +0300
commit6c90e824c4e8f54c71645b63b1ea33b1e028cb97 (patch)
tree8f0c3a54dbd789940b5225fde3d24db5f5c37c5f /tests/extensions/extensions.proto
parentf4949119ada32e28959e25e46b4f3314805b5ed1 (diff)
Fix compile error when default value given for extension field.
Update issue 111 Status: FixedInGit
Diffstat (limited to 'tests/extensions/extensions.proto')
-rw-r--r--tests/extensions/extensions.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extensions/extensions.proto b/tests/extensions/extensions.proto
index d85e8193..da8432e0 100644
--- a/tests/extensions/extensions.proto
+++ b/tests/extensions/extensions.proto
@@ -1,7 +1,7 @@
import 'alltypes.proto';
extend AllTypes {
- optional int32 AllTypes_extensionfield1 = 255;
+ optional int32 AllTypes_extensionfield1 = 255 [default = 5];
}
message ExtensionMessage {