[perl #130034] A andthen B orelse C leaks some internal Block

2016-11-06 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #130034] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130034 > 15:18 < llfourn_> m: say (Str andthen .uc orelse "foo") # more golfed 15:18 <+camelia>

Re: small test program

2016-11-06 Thread Mike South
On Sat, Nov 5, 2016 at 1:10 PM, mt1957 wrote: > Hi, > > I've made a small test program to run a particular test file in an > infinite loop until it fails. I was investigating some race problem in BSON > and the test run was successful most of the time. I got some raw fingers to

Re: [perl #130024] [NYI][BUG] not possible to set the is default trait on shaped arrays

2016-11-06 Thread Elizabeth Mattijsen
It’s on my radar, but wasn’t as easily fixable as I initially thought :-( > On 05 Nov 2016, at 13:26, Jan-Olof Hendig (via RT) > wrote: > > # New Ticket Created by Jan-Olof Hendig > # Please include the string: [perl #130024] > # in the subject line of all

[perl #130031] [BUG][BUILD] gmake install step fails under Windows for 2016.10 with the Strawberry Perl buildchain

2016-11-06 Thread via RT
# New Ticket Created by Steve Mynott # Please include the string: [perl #130031] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130031 > Although discovered while trying to create Rakudo Star 2016.10 binaries for Windows I

[perl #130024] [NYI][BUG] not possible to set the is default trait on shaped arrays

2016-11-06 Thread via RT
# New Ticket Created by Jan-Olof Hendig # Please include the string: [perl #130024] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130024 > # The system dogbert@dogbert-VirtualBox ~ $ perl6 -v This is Rakudo version

[perl #130030] Cannot bind to role attribute from a class

2016-11-06 Thread via RT
# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #130030] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130030 > m: role A { has $!foo }; class B does A { method b() { $!foo := 42 } };