in reply to Re^3: Detect undefined subroutines
in thread Detect undefined subroutines

You need to turn on warning to see them...

$ perl -Mstrict -cwe '*foo->()' Name "main::foo" used only once: possible typo at -e line 1. -e syntax OK $ perl -Mstrict -we '*foo->()' Name "main::foo" used only once: possible typo at -e line 1. Undefined subroutine &main::foo called at -e line 1.

ihb

Read argumentation in its context!