This file is indexed.

/usr/lib/ocaml/typerep_lib/named_intf.ml is in libtyperep-camlp4-dev 113.00.00-3ubuntu1.

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
25
26
27
28
29
module type S0 = sig
  type t
  val name : string
end

module type S1 = sig
  type 'a t
  val name : string
end

module type S2 = sig
  type ('a, 'b) t
  val name : string
end

module type S3 = sig
  type ('a, 'b, 'c) t
  val name : string
end

module type S4 = sig
  type ('a, 'b, 'c, 'd) t
  val name : string
end

module type S5 = sig
  type ('a, 'b, 'c, 'd, 'e) t
  val name : string
end