in reply to Re^3: Function name in a variable, can't recall the concept
in thread Function name in a variable, can't recall the concept

Those aren't really exceptions. Strict refs is only meant to stop you from accidentally using symbolic refs. (After all, you can always turn it off strict refs off if you want to use symbolic refs intentionally.) %:: and can only take symbol names, so they can't accidentally be used incorrectly.

Replies are listed 'Best First'.
Re^5: Function name in a variable, can't recall the concept
by LanX (Saint) on Apr 15, 2019 at 11:25 UTC
    > Those aren't really exceptions.

    I was referring to "allowed under strict" requirement.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

      I know. A lot of things are allowed under strict refs (e.g. addition). That doesn't make them exceptions.