The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package a;
use warnings;
use strict;

my $LOG = Log::Fast->global();


sub A {
    $LOG->ERR('in a::A');
}

sub call {
    my $func = shift;
    no strict 'refs';
    $func->(@_);
}


1;