in reply to Using CORE:: with autobox

CORE:: is really a parse-time construct; most builtins aren't actually subs, so there's no way to take a reference to them to alias them (ala *SCALAR::uc = \&CORE::uc).

Update: just saw ferreira's response; no, those don't work. They will try to call an undefined sub CORE::uc, not the builtin.