Refactor most of the cut & paste for setting prefix/prefixexp variables
[p5sagit/p5-mst-13.2.git] / t / lib / Devel / switchd.pm
CommitLineData
3e4c85f8 1package Devel::switchd;
54f45c29 2use strict; BEGIN { } # use strict; BEGIN { ... } to incite [perl #21890]
964b4e64 3sub import { print "import<@_>;" }
54f45c29 4package DB;
964b4e64 5sub DB { print "DB<", join(",", caller), ">;" }
6sub sub { print "sub<$DB::sub>;"; goto &$DB::sub }
54f45c29 71;
8