xref: /openbsd-src/gnu/usr.bin/perl/t/lib/Devel/switchd.pm (revision 43003dfe3ad45d1698bed8a37f2b0f5b14f20d4f)
1package Devel::switchd;
2use strict; BEGIN { } # use strict; BEGIN { ... } to incite [perl #21890]
3sub import { print "import<@_>;" }
4package DB;
5sub DB { print "DB<", join(",", caller), ">;" }
6sub sub { print "sub<$DB::sub>;"; goto &$DB::sub }
71;
8
9