This file is indexed.

/usr/share/gocode/src/google.golang.org/grpc/reflection/grpc_testing/proto2_ext.proto is in golang-google-grpc-dev 1.0.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
syntax = "proto2";

package grpc.testing;

import "proto2.proto";
extend ToBeExtened {
  optional int32 bar = 13;
  optional Extension baz = 17;
}

message Extension {
  optional int32 baz = 1;
}