in reply to Possible to catch undefined sub at "compile" time?

perl can't know if the sub won't be defined because you can define subs at runtime.
use warnings; use strict; use 5.008; sub monk($) {} some_code_that_defines_a_sub_mink(); sub go() { mink(123); }
how should this behave with your suggestion?