[perl #123978] Assignment to $*OUT might fails for empty

2015-03-03 Thread via RT
# New Ticket Created by H. Merijn Brand # Please include the string: [perl #123978] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123978 > $ perl6 -e 'use v6; $*OUT.nl = "\n";' $ perl6 -e 'use v6; $*OUT.nl = "\r\n";' $ perl6

[perl #116897] while (...splice...) runs forever

2015-03-03 Thread Alexander Moquin via RT
Test added in Roast commit: commit e75f03bf2d9b9b7074fd0077fb5cf4beaeef3e89 Author: Mouq Date: Wed Mar 4 02:03:39 2015 -0500 Add test for RT #116897 Closing as resolved :) On Tue Jan 27 14:17:08 2015, Mouq wrote: > Behavior change: > > $ perl6 -e'my @a = << >>; while (my @c = splice @a,

[perl #114210] Prefix op parsing takes precedence over subroutine parsing, should not

2015-03-03 Thread Christian Bartolomaeus via RT
This works now: $ perl6 -e 'say not(0) + 1' 2 $ perl6 -e 'say (not 0) + 1' 2 The test was unfudged with commit https://github.com/perl6/roast/commit/0f47ac7711 I'm closing this ticket as 'resolved'.

[perl #122218] Strange segfault on MMD / pair / named parameter ambiguity

2015-03-03 Thread Christian Bartolomaeus via RT
As mentioned earlier this didn't segfault on Moar for a while. Even though the code still segfaults on Parrot most of the time, I had difficulties to reproduce the segfault in a test file. Therefore I regard this ticket as resolved without having a test in roast. WRT the flapping segfault on Pa

[perl #122094] Segfault in ObjAt initialization

2015-03-03 Thread Christian Bartolomaeus via RT
The new test file S02-types/built-in.t is now included in t/spectest.data: https://github.com/rakudo/rakudo/commit/01c3faf9c5 I'm closing this ticket as resolved.

[perl #123967] 'new' with invalid signature returns error without package/file/line

2015-03-03 Thread via RT
# New Ticket Created by # Please include the string: [perl #123967] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123967 > OS: Ubuntu 14.10 Linux 64-bit, 2GiB RAM, VirtualBox Host: Windows 8 Intel i5 Core rakudo commit 67a7

[perl #123968] Rakudo on MoarVM segfaults on simple IO::Socket::Async echo server

2015-03-03 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #123968] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123968 > THe fllowing program: use v6; my $connections = IO::Socket::Async.listen( 'localhost'

[perl6/specs] 50becc: doc design of new keyword override rules

2015-03-03 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 50becca740c85d30f30cd97ab57b115bfc40fb1b https://github.com/perl6/specs/commit/50becca740c85d30f30cd97ab57b115bfc40fb1b Author: TimToady Date: 2015-03-02 (Mon, 02 Mar 2015) Changed paths: M S02-bits.

Re: [perl #123957] Attempting to use unimplemented operator on Rakudo invokes OOM killer

2015-03-03 Thread drforr
On 2015-03-01 23:55, Alexander Moquin via RT wrote: The issue seems to be the "does Numeric". Thus this can be golfed to: perl6 -e'class RT123957 does Numeric {}; 1 + RT123957.new' This happens because &[+] calls Numeric on arguments it doesn't know how to add and tries to add those things. Sin