Skip Menu |

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

Report information
The Basics
Id: 80512
Status: resolved
Priority: 0/
Queue: Method-Signatures-Simple

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

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



Subject: silent failure for unicode in sub names
$ cat bug/unicode-func #!perl use utf8; use Method::Signatures::Simple; func hörps() {} hörps(); __END__ $ perl bug/unicode-func Undefined subroutine &main::hörps called at bug/unicode-func line 5.
On Tue Oct 30 19:21:54 2012, MAUKE wrote: Show quoted text
> $ cat bug/unicode-func > #!perl > use utf8; > use Method::Signatures::Simple; > func hörps() {} > hörps(); > __END__ > $ perl bug/unicode-func > Undefined subroutine &main::hörps called at bug/unicode-func line 5.
This turns out to be a Devel::Declare bug, see RT77022: https://rt.cpan.org/Ticket/Display.html?id=77022 Incidentally, this does work on my 5.14.2, but it breaks on 5.16.0. rhesa