Skip Menu |

This queue is for tickets about the Method-Signatures CPAN distribution.

Report information
The Basics
Id: 81369
Status: rejected
Priority: 0/
Queue: Method-Signatures

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

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



Subject: weird errors with unicode names
$ cat unicode1 #!perl use utf8; use Method::Signatures; func foo($neé) {} __END__ $ perl unicode1 Can't call method "prune" on an undefined value at /home/mauke/usr/lib/perl5/site_perl/5.16.2/Method/Signatures/Parser.pm line 19. $ cat unicode2 #!perl use utf8; use Method::Signatures; func naïve() {} naïve(); __END__ $ perl unicode2 Undefined subroutine &main::naïve called at unicode2 line 6.