This file is indexed.

/usr/share/lifelines/st/test_othr_it.ll is in lifelines-reports 3.0.61-2.

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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * @progname       test_othr_it
 * @version        1
 * @author         Stephen Dum
 * @category       self-test
 * @output         text
 * @description
 * 
 * test iterators: forsour, foreven, forothr
 * Iterate over some data, printing results, so we can
 * compare the output with exected results.
 */
proc main() {
    print(nl())
    print("forsour\n")
    forsour(s,c) {
        print(d(c),": ",key(s),nl())
    }
    print("foreven\n")
    foreven(e,c) {
        print(d(c),": ",key(e),nl())
    }
    print("forothr\n")
    forothr(s,c) {
        print(d(c),": ",key(s),nl())
    }
}