The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use perl5i::latest;
use Test::More;

{
    package Foo;
    sub bar { 42 }
}

my $class = "Foo";
ok $class->can("bar"),                  "autoboxing vs can()";

ok $class->UNIVERSAL::can("bar"),       "  no really, it should work";

done_testing();