This file is indexed.

/usr/share/doc/libgtkada-doc/examples/powergnu/.gate/power/power.adb is in libgtkada-doc 2.24.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
with Gtk; use Gtk;
with Gtk.Main;
with Gtk.Widget; use Gtk.Widget;
with Powergnu_Pkg; use Powergnu_Pkg;

procedure Power is
begin
   Gtk.Main.Set_Locale;
   Gtk.Main.Init;
   Gtk_New (Powergnu);
   Show_All (Powergnu);
   Gtk.Main.Main;
end Power;