This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.24/autobox/universal.pm is in libautobox-perl 2.84-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
package autobox::universal;

use strict;
use warnings;

use autobox (); # don't import()

use Exporter (); # perl 5.8.0 doesn't support "use Exporter qw(import)"

our @ISA = qw(Exporter);
our @EXPORT_OK = qw(type);

1;