Skip Menu |

This queue is for tickets about the Class-Multimethods CPAN distribution.

Report information
The Basics
Id: 2345
Status: new
Priority: 0/
Queue: Class-Multimethods

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

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: [Feature Request] C<multimethod mymethod => ( 'UNIVERSAL' ) => sub {}> should work
multimethod mymethod => ( 'UNIVERSAL' ) => sub { '1' } multimethod mymethod => ( '*' ) => sub { '2' } print mymethod( Object->new ); This prints 2, but i expected (request) 1. Thank you very much, Murat