aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/proto_ignore_go_package_option/a.proto
blob: 45fed520e1fe9eddba9b465c74d5062a22932db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

// This is a fake go_package that would be ignored by specifying
// ignore_go_package_option = 1.
option go_package = "foo.com/bar/bla;boo";

// Importing google proto is not affected by ignore_go_package_option.
import "google/protobuf/struct.proto";

package foo;

message Foo {
  int32 a = 1;
  google.protobuf.Struct s = 2;
}