in reply to Why can't I call SUPER from user code?

Because SUPER is package-scoped, which seems pretty dumb to me too. Here's how you can do something analgous from user-land, assuming single inheritence:

my $meth = "$FOO::ISA[0]::bang"; $foo3->$meth();

-sam