[perl #117901] [BUG] prefix: and prefix: cause LTM error in hyphenated sub names like not-foo()

2015-03-02 Thread Christian Bartolomaeus via RT
This works now: $ perl6 -e 'sub not-foo { "2" }; say not-foo();' 2 $ perl6 -e 'sub so-what { say "nyan"; }; so-what;' nyan $ perl6 -e 'sub m-foo { say "nyan"; }; m-foo;' nyan I added three tests to S06-other/misc.t with commit https://github.com/perl6/roast/commit/c3d0fa4d70 I'm closing this

[perl #117901] [BUG] prefix: and prefix: cause LTM error in hyphenated sub names like not-foo()

2013-05-06 Thread via RT
# New Ticket Created by Brent Laabs # Please include the string: [perl #117901] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=117901 > labster: r: sub not-foo { "2" }; say not-foo(); camelia: rakudo 9ed5c5: OUTPUTĀ«[31