Re: [perl #130396] [BUG] =:= operation aginst item contextualized object returns incorrect result

2016-12-24 Thread Elizabeth Mattijsen via RT
> On 24 Dec 2016, at 07:01, Itsuki Toyota (via RT) > wrote: > > # New Ticket Created by Itsuki Toyota > # Please include the string: [perl #130396] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=130396 > > > > See the

Re: [perl #130396] [BUG] =:= operation aginst item contextualized object returns incorrect result

2016-12-24 Thread Elizabeth Mattijsen
> On 24 Dec 2016, at 07:01, Itsuki Toyota (via RT) > wrote: > > # New Ticket Created by Itsuki Toyota > # Please include the string: [perl #130396] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=130396 > > > > See the

[perl #130396] [BUG] =:= operation aginst item contextualized object returns incorrect result

2016-12-23 Thread Moritz Lenz via RT
This is not a bug. $b is a container that contains the array @a, so @a !=:= $b. : An easy test is assigning to $b, and see if it's reflected in @a: $ perl6 -e 'my @a = 1,2; my $b = @a.item; $b = 42; say @a' [1 2]

[perl #130396] [BUG] =:= operation aginst item contextualized object returns incorrect result

2016-12-23 Thread via RT
# New Ticket Created by Itsuki Toyota # Please include the string: [perl #130396] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130396 > See the following results: $ perl6 -e 'my @a = 1,2; my $b = @a.item; say $b =:= @a;' F