Re: [perl #128036] Bug filling hash using $_

2016-05-01 Thread Marcel Timmerman
Hi, Thanks for the explanation, sorry for creating the bug entry. regards, Marcel On May 1, 2016 1:28:58 PM "Sam S. via RT" wrote: PS: Or if you don't like the `hash` keyword, you can use the %( ) contextualizer which does the same thing: my Hash $h = %( f1 => $_ );

Re: [perl #128036] Bug filling hash using $_

2016-04-30 Thread mt1957
More simplified code producing the same error; $_ = 'some message'; my Hash $h = { f1 => $_, } greetings Marcel # New Ticket Created by mt1957 # Please include the string: [perl #128036] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Displ

[perl #128036] Bug filling hash using $_

2016-04-30 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #128036] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128036 > Hi, Had some strange problem to solve... Could golf it down to the following; *class A {** **