Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[perl #39254] Unicode sub names don't work with :multi

8 views
Skip to first unread message

Will Coleda

unread,
May 31, 2006, 1:40:10 PM5/31/06
to bugs-bi...@rt.perl.org
# New Ticket Created by Will Coleda
# Please include the string: [perl #39254]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=39254 >


The recently added support (yay!) for subs with unicode names doesn't
work with :multi

.sub unicode:"\u7777" :multi(string)
.param pmc arg
print 'String:'
say arg
.end
.sub unicode:"\u7777" :multi(int)
.param pmc arg
print 'Int:'
say arg
.end

.sub main :main
unicode:"\u7777"('what')
unicode:"\u7777"(23)
.end

0 new messages