The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use strict;
use warnings;

use Test::More;

use Method::Signatures;

{
    my $a;
    ok eval q{ $a = [ func () {}, 1 ]; 1 }, 'anonymous function in list is okay'
        or diag "eval error: $@";
    is ref $a->[0], "CODE";
    is $a->[1], 1;
}

{
    my $a;
    ok eval q{ $a = [ method () {}, 1 ]; 1 }, 'anonymous method in list is okay'
        or diag "eval error: $@";
    is ref $a->[0], "CODE";
    is $a->[1], 1;
}

done_testing;