# New Ticket Created by Zoffix Znet
# Please include the string: [perl #129227]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129227 >
m: 7 ~ "\x[308]" x 100_000
rakudo-moar 7925d6: OUTPUT«WARNINGS for :Useless use of "~
Not a bug.
See also http://irclog.perlgeek.de/perl6-dev/2016-09-08#i_13170729
Thanks for the report.
Fixed in https://github.com/rakudo/rakudo/commit/a2b6f74be1
Tests added in https://github.com/perl6/roast/commit/3ed2af4c42
On Sat Aug 06 11:25:38 2016, sml...@gmail.com wrote:
> Golfed program to demonstrate the problem:
>
> my $server = IO::Socket::Async.listen('localhost', );
> $server.tap: -> $conn {
> $conn.Supply.tap: -> $message { say $message.perl }
> }
>
> my $client = IO::Socket::Async.connect('local
I'm unable to reproduce this on HEAD Rakudo even with $n set to 40 and
RAKUDO_MAX_THREADS set to 50.
What is your perl6 version (perl6 -v). Are you able to try this against HEAD
[^1]? Yesterday a fix went in addressing issues in sockets and threads; and
recently there have been many other async
# New Ticket Created by Sam S.
# Please include the string: [perl #129234]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129234 >
If you `die` inside a `map/for` that is being `hyper/race`d...
for (1..1).hyper { die };
And now a lot of tests from roast exploded with "Expected a native int argument
for '$a'" after this commit introduced two uses of postfix:<++> and
postfix:<--> in lib/Test.pm6:
https://github.com/rakudo/rakudo/commit/ffb5789f7eef1157c7556897c4805569df4f7aa4
Modifying the two relevant lines see
# New Ticket Created by Robert Lemmen
# Please include the string: [perl #129228]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=129228 >
this simple program:
---8<---
use v6;