This file is indexed.

/usr/share/gocode/src/github.com/naoina/toml/testdata/unmarshal-arraytable-conflict-2.toml is in golang-github-naoina-toml-dev 0.1.1-4.

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
# unmarshal-arraytable-conflict-2.toml

[[fruit]]
name = "apple"

[fruit.variety]
name = "granny smith"

# This table conflicts with the previous table.
[[fruit.variety]]
name = "red delicious"