/usr/lib/perl5/Devel/NYTProf/Test.pm is in libdevel-nytprof-perl 5.06-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 14 15 | package # hide from pause package indexer
Devel::NYTProf::Test;
# this module is just to test the test suite
# see t/test60-subname.p for example
require Devel::NYTProf::Core;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(example_sub example_xsub example_xsub_eval set_errno);
sub example_sub { }
1;
|