# 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
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,
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'.
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
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.
# 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
# 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'
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.
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