in reply to symbolic references
and running your code through B::Deparse you get (leaving out all the 'feature' stuff):There is one exception to this rule: $bar = \&{'foo'}; &$bar; is allowed so that "goto &$AUTOLOAD" would not break unde +r stricture.
which triggers the exception.sub test { goto \&{'greet';}; }
|
|---|