[perl #122543] [BUG] Can't 'is rw' multiply declared has attributes in Rakudo (but works in STD)

2015-03-02 Thread Will Coleda via RT
On Thu Jan 01 12:30:29 2015, barto...@gmx.de wrote: > I added a test for this to S12-attributes/instance.t with commit > https://github.com/perl6/roast/commit/67d36ed7db > > AFAIU the problem stems from ($.x, $.y) being (parsed as) a signature. > Even with one attribute the same failure occurs: >

[perl #117683] Several unicode char (nick)names unrecognized

2015-03-02 Thread Will Coleda via RT
On Sun Jul 20 10:16:40 2014, coke wrote: > On Sat Apr 20 19:12:48 2013, pmichaud wrote: > > On Sat, Apr 20, 2013 at 07:05:25PM -0700, Will Coleda wrote: > > > This seems to be an OS X only error: > > > > > > ./perl6 -e 'say "\c[LINE FEED (LF)]"' > > > ===SORRY!=== > > > Unrecognized character name

[perl #123969] NullPointerException on jvm for same CStruct in CStruct

2015-03-02 Thread via RT
# New Ticket Created by Tobias Leich # Please include the string: [perl #123969] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123969 > $ perl6-m -e 'class Foo is repr { has int32 $.idontcare; has Foo $.bar }' $ perl6-j --ll

[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 #123084] [BUG] Can't use bare 'not' as hash key in Rakudo (but works in STD.pm6)

2015-03-02 Thread Christian Bartolomaeus via RT
This works now: $ perl6 -e 'my %h = not => 42; say %h.perl' ("not" => 42).hash I added a test to S02-types/hash.t with commit https://github.com/perl6/roast/commit/83da5c2c81 I'm closing this ticket as 'resolved'.

[perl #67784] [BUG] Cannot refer to a defined class 'class' in Rakudo

2015-03-02 Thread Christian Bartolomaeus via RT
This works now: $ perl6 -e 'class class {}; say class.new.perl' class.new() The test in S12-class/basic.t was unfudged with commit https://github.com/perl6/roast/commit/b76efe4175 I'm closing this ticket as 'resolved'.