in reply to Re: Detecting undefined subroutines at compile time
in thread Detecting undefined subroutines at compile time
yields when run:no strict; no warnings; no less tricky; foo(lish); his::bar(tab); silly->stuff; come on, please give up; package UNIVERSAL; sub AUTOLOAD { print "I am masquerading as $AUTOLOAD(@_)\n" }
I am masquerading as main::foo(lish) I am masquerading as his::bar(tab) I am masquerading as silly::stuff(silly) I am masquerading as on::come(on) I am masquerading as give::please(give up)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Detecting undefined subroutines at compile time
by LanX (Saint) on May 03, 2011 at 07:41 UTC |