This file is indexed.

/usr/share/doc/jflex/examples/interpreter/output.good is in jflex 1.6.1-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
Program:
=============
input a,b
functions
div(x,y) = 
  if x<y then 0 else (div((x-y),y)+1) fi,
mod(x,y) = 
  if x<y then x else mod((x-y),y) fi
output div(a,b),mod(a,b)
arguments 324,17
end
Result:
=============
19,  1