blob: eec689c20ab19185abebd81b7435b161f31ce799 [file] [log] [blame]
Damien Neil0fc22452019-03-08 17:18:11 -08001// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5syntax = "proto2";
6
7package goproto.proto.test;
8
9import "test/test.proto";
10
Damien Neile89e6242019-05-13 23:55:40 -070011option go_package = "google.golang.org/protobuf/internal/testprotos/test";
Damien Neil0fc22452019-03-08 17:18:11 -080012
13extend TestAllExtensions {
14 optional int32 foreign_int32_extension = 2000;
15}