summaryrefslogtreecommitdiff
path: root/lib/perl5db/t/uncalled-subroutine
blob: daf7965aa4a6465c9d468142d9c91fce495d1c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

use strict;
use warnings;

exit(0);

sub uncalled_subroutine
{
    print '<', join(',', 1 .. 5), ">\n";
}