xref: /openbsd-src/gnu/usr.bin/perl/lib/perl5db/t/uncalled-subroutine (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6exit(0);
7
8sub uncalled_subroutine
9{
10    print '<', join(',', 1 .. 5), ">\n";
11}
12