This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.22/MooseX/Role/WithOverloading/Meta/Role.pm is in libmoosex-role-withoverloading-perl 0.17-1build1.

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
package MooseX::Role::WithOverloading::Meta::Role;

our $VERSION = '0.17';

use Moose 0.94 ();
use Moose::Role;
use aliased 'MooseX::Role::WithOverloading::Meta::Role::Composite', 'CompositionRole';
use namespace::autoclean;

around composition_class_roles => sub {
    my ($orig, $self) = @_;
    return $self->$orig, CompositionRole;
};

1;