This file is indexed.

/usr/share/doc/libaunit-doc/examples/simple_test/tested_lib/src/math.ads is in libaunit-doc 3.7.1-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
11
12
--
--  Copyright (C) 2008, AdaCore
--
package Math is

   type Int is new Integer;

   function "+" (I1, I2 : Int) return Int;

   function "-" (I1, I2 : Int) return Int;

end Math;