This file is indexed.

/usr/share/gocode/src/gopkg.in/fatih/pool.v2/conn_test.go is in golang-gopkg-fatih-pool.v2-dev 0.0~git20150325-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
package pool

import (
	"net"
	"testing"
)

func TestConn_Impl(t *testing.T) {
	var _ net.Conn = new(PoolConn)
}