This file is indexed.

/usr/share/gtk-sharp2-examples/GExceptionTest.cs is in gtk-sharp2-examples 2.12.10-5.

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
// HelloWorld.cs - GTK Window class Test implementation
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (c) 2001-2002 Mike Kestner

namespace GtkSamples {

	using Gtk;
	using Gdk;
	using System;

	public class GExceptionTest  {

		public static int Main (string[] args)
		{
			Application.Init ();
			Gtk.Window win = new Gtk.Window ("GException");
			win.SetIconFromFile ("this.filename.does.not.exist");
			// Notreached, GException should throw on above call.
			return 0;
		}
	}
}