Skip Menu |

This queue is for tickets about the MooseX-Declare CPAN distribution.

Report information
The Basics
Id: 49389
Status: new
Priority: 0/
Queue: MooseX-Declare

People
Owner: Nobody in particular
Requestors: COWENS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.29
Fixed in: (no value)



Subject: typo of HashRef[Any] in signature leads to odd error message
If you typo HashRef[Any] as Hashref[Any] you get the error message: Can't locate object method "parameterize" via package "PPI::Token::Word" at /Users/cowens/perl5/lib/perl5/Parse/Method/Signatures/TypeConstraint.pm line 115. minimal testcase: #!/use/bin/perl use MooseX::Declare; class Foo { method BUILD (Hashref[Any] $args) {} }