This file is indexed.

/usr/share/doc/libaunit-doc/examples/liskov/tests/square-tests.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
13
14
15
--
--  Copyright (C) 2008, AdaCore
--
with Rectangle.Tests;

package Square.Tests is

   type Test is new Rectangle.Tests.Test with
     null record;

   procedure Set_Up (T : in out Test);

   procedure Test_Get_Area (T : in out Test);

end Square.Tests;