[perl #127414] Failure from container default does not display a stacktrace

2016-01-29 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #127414] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127414 > my $a is default(Failure.new); say $a; # OUTPUT«===SORRY!===␤Failed» # The

Re: [perl #127414] Failure from container default does not display a stacktrace

2016-01-29 Thread Elizabeth Mattijsen
> On 29 Jan 2016, at 14:43, Wenzel Peppmeyer (via RT) > wrote: > > # New Ticket Created by Wenzel Peppmeyer > # Please include the string: [perl #127414] > # in the subject line of all future correspondence about this issue. > #

[perl #127422] Behavior of state vars in variations of `do while` inconsistent

2016-01-29 Thread Sam S. via RT
As another data point, the problem persists also when using parens instead of "do" to enforce return values: (loop { state $a++; say $a; })[^5]

[perl #127422] Behavior of state vars in variations of `do while` inconsistent

2016-01-29 Thread via RT
# New Ticket Created by Nick Logan # Please include the string: [perl #127422] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127422 > The following prints an incrementing count (expected): `my $x = do { while ( 1 ) { state

[perl #127424] Range.rotor and List.rotor behave differently (^11 .rotor: 1.5)

2016-01-29 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127424] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127424 > Code: say .rotor: 1.5 Result: ((a b) (b c) (d e) (e f) (g h) (h i) (j k)) Hmm, I'm

[perl #127425] [LTA] “actually thrown at:” shows nothing (.rotor: 1 => -Inf)

2016-01-29 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127425] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127425 > Code: say .rotor: 1 => -Inf Result: Cannot coerce Inf or NaN to an Int in block at

[perl #127423] [BUG] EOF check in MoarVM breaks process substitution and opening of devices

2016-01-29 Thread via RT
# New Ticket Created by Vittore SCOLARI # Please include the string: [perl #127423] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127423 > Typing the following on the command line: perl6 -e 'say @*ARGS[0].IO.open(:r).lines'

[perl #127421] : multi sub infix:<==> (Int $a, Str $b) { $a == $b } hangs in COMPILE time

2016-01-29 Thread via RT
# New Ticket Created by Paweł Pabian # Please include the string: [perl #127421] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127421 > multi sub infix:<==> (Int $a, Str $b) { $a == $b } Will never finish compilation on

[perl #127428] [BUG] react { ... /done } unexpected behaviour

2016-01-29 Thread via RT
# New Ticket Created by Jonathan Stowe # Please include the string: [perl #127428] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127428 > Hi, I was investigating some problem I was having with my own code and came upon

[perl #127427] Parsing of prefix reduce doesn't like spaces

2016-01-29 Thread via RT
# New Ticket Created by Brad Gilbert # Please include the string: [perl #127427] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127427 > If you add any spaces anywhere in reduce part of the following it fails to compile.