[perl #130588] [BUG] Feed operators final sub / routine parens

2017-01-19 Thread via RT
# New Ticket Created by Sam M # Please include the string: [perl #130588] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130588 > The docs state the following regarding the feed operators: > In the case of routines/methods th

Re: [perl #130588] [BUG] Feed operators final sub / routine parens

2017-01-19 Thread Brandon Allbery
On Thu, Jan 19, 2017 at 6:43 AM, Sam M wrote: > > "my string" ==> reverse > ===SORRY!=== Error while compiling: > Unsupported use of bare "reverse"; in Perl 6 please use .reverse if you > meant $_, or use an explicit invocant or argument, or use &reverse to refer > to the function as a noun > ---

[perl #130589] LTA error message for attr typed as defined

2017-01-19 Thread via RT
# New Ticket Created by Justin DeVuyst # Please include the string: [perl #130589] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130589 > I'm not sure if "is required" qualifies as an "initializer" to someone but it doesn't i

[perl #130590] HyperWhatever does not work with reduction metaop ([+] **)

2017-01-19 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130590] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130590 > Code: ([+] **)(4, 8, 15).say Result: Cannot resolve caller Numeric(H

[perl #130598] [REGRESSION] while statement modifier returns blocks instead of running the code ( say ({ 42 } for ^3) )

2017-01-19 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130598] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130598 > Code: say ({ 42 } while $++ < 3) Result (2015.12): (42 42 42) Resul

[perl #130599] [LTA] [REGRESSION] internal backtrace is spewed when trying to assign to a Blob type object (Blob[2] = 100)

2017-01-19 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130599] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130599 > Code: Blob[2] = 100 Result (2015.12,2016.02): Cannot modify an immu

[perl #130600] LAST is called when it shouldn't be (my $x = do while (1) { LAST { die ‘hello’ }; })

2017-01-19 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130600] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130600 > First of all, consider this snippet: Code: my $x = do while (1) { 42