Wed Apr 02 13:41:31 2014shtil [...] comcast.net - Ticket created
Subject:
Bug
Date:
Wed, 2 Apr 2014 17:41:14 +0000 (UTC)
To:
bug-mousex-params-validate [...] rt.cpan.org
From:
shtil [...] comcast.net
Here is the code to reproduce:
#!perl
my $obj = new PACKAGE;
$obj->test({});
package PACKAGE;
use Mouse;
use MouseX::Params::Validate;
sub test {
my $self = shift;
my ($data) = pos_validated_list(
\@_,
{isa => 'HashRef'},
);
}