This file is indexed.

/usr/share/gocode/src/github.com/willf/bitset/trailing_zeros_19.go is in golang-github-willf-bitset-dev 1.1.3-3.

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
// +build go1.9

package bitset

import "math/bits"

func trailingZeroes64(v uint64) uint {
	return uint(bits.TrailingZeros64(v))
}