[perl #83952] [BUG] LTA error message when a non-number follows \c in a qq string literal in Rakudo

2014-01-13 Thread Will Coleda via RT
On Fri Feb 11 11:42:36 2011, masak wrote: > rakudo: my $ya = "\cIa" > rakudo : OUTPUT«===SORRY!===␤Method 'panic' not found for > invocant of class 'Regex;Match'␤» > ??? > internal error during error reporting > * masak submits rakudobug > rakudo: "\cI" > rakudo : OUTPUT«===SORRY!===␤Method '

[perl #114216] Type captures in a bare signatures lead to internal errors

2014-01-13 Thread Will Coleda via RT
On Tue Oct 16 09:12:33 2012, jn...@jnthn.net wrote: > On Fri Jul 20 08:13:21 2012, moritz wrote: > > 17:11 < moritz> r: :(::T $x) > > 17:11 <+p6eval> rakudo 4eeffc: OUTPUT«use of uninitialized value of type > > Mu in string context in any at src/gen/BOOTSTRAP.pm:104␤␤use of > > uninitialized valu

[perl #86340] [BUG] No error in Rakudo about [=] not being allowed because = is too fiddly

2014-01-13 Thread Will Coleda via RT
On Sun Jun 09 07:31:23 2013, jn...@jnthn.net wrote: > On Wed Mar 16 14:12:23 2011, masak wrote: > > rakudo: my ($a, $b, $c); $c = 42; [=] $a, $b, $c; say ($a, $b, > > $c).join("|") > > rakudo e3bd9a: OUTPUT«Any()|Any()|42␤» > > huh. > > that isn't what I expected... > > std: my ($a, $b, $c); [

[perl #114234] [BUG] Segfault when putting a 'state' variable in a class declaration in Rakudo

2014-01-13 Thread Will Coleda via RT
On Sun Aug 05 09:04:56 2012, jn...@jnthn.net wrote: > On Sun Jul 22 15:16:34 2012, masak wrote: > > hm. Seems there's a bug in rakudo. > > r: class A { state $b; }; > > rakudo 3ac8c7: OUTPUT�(signal SEGV)� > > lue: nice! > > * masak submits rakudobug > > Fixed; tagging testneeded. > > /jnthn

[perl #78258] [BUG] %*ENV doesn't work from within a use'd module in Rakudo

2014-01-13 Thread Will Coleda via RT
On Sun May 27 20:11:51 2012, coke wrote: > On Wed Oct 06 16:01:03 2010, masak wrote: > > mberends++ reports the following bug: > > > > $ cat testenv.pm6 > > > > print 'Test existence of %*ENV: '; > > print %*ENV.exists('PERL6LIB'); > > say " OK, still alive"; > > > > $ rakudo testenv.pm6 > > >

[perl #79778] [BUG] .trans from a regex to a string does the Wrong Thing in Rakudo

2014-01-13 Thread Will Coleda via RT
On Sat Apr 21 02:06:01 2012, jn...@jnthn.net wrote: > On Thu Nov 25 11:51:59 2010, masak wrote: > > rakudo: say "this sentence no verb".trans( / \s+ / => " " ) > > rakudo : OUTPUT«this senten e n ver ␤» > > :( > > * masak submits rakudobug > > I thought you were fixing that? ;) > > yeah. me

[perl #112234] [BUG] Can't write infix:�<� as infix:<< < >> in Rakudo

2014-01-13 Thread Will Coleda via RT
On Mon Nov 05 14:27:29 2012, jn...@jnthn.net wrote: > On Wed Apr 04 04:10:55 2012, masak wrote: > > r: say 4 < 5 < 6 < 7 > > rakudo 4373f0: OUTPUT«True␤» > > r: say 4 < 5 < 6 < 4 > > rakudo 4373f0: OUTPUT«False␤» > > r: enum A ; multi infix:<< < >>(A, A) { False }; > > multi infix:<< < >>(e1,