1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file or at 6// https://developers.google.com/open-source/licenses/bsd 7 8syntax = "proto2"; 9 10package protobuf.kotlin.test; 11 12option java_package = "com.google.protobuf.kotlin.test"; 13option java_multiple_files = true; 14 15message ExampleExtensibleMessage { 16 extensions 10 to 20; 17} 18 19extend ExampleExtensibleMessage { 20 repeated int32 repeated_extension = 10; 21 repeated int32 different_extension = 11; 22 optional int32 int32_extension = 12; 23} 24