On Fri, 07 Apr 2017 19:16:17 -0700, alex.jakime...@gmail.com wrote: > This no longer prints 256. > > Bisectable points to > https://github.com/rakudo/rakudo/commit/5401a1aa8f12c360ccd3e4000dcdc65ad98c746a > > Is it actually resolved or not? > > I will mark it testneeded for now (if it's not resolved, the tests > should > reveal it). > > On 2016-01-04 04:14:49, FROGGS.de wrote: > > That highlights the bug: > > > > m: my uint8 $x = 255; print $x, " -> "; $x = $x + 1; say $x; > > rakudo-moar 0f26ae: OUTPUT«255 -> 0» > > > > m: my uint8 $x = 255; print $x, " -> "; $x++; say $x; > > rakudo-moar 0f26ae: OUTPUT«255 -> 256» > > > > Am 04.01.2016 um 11:48 schrieb Elizabeth Mattijsen: > > >> On 04 Jan 2016, at 00:25, Juerd Waalboer (via RT) <perl6-bugs- > > >> follo...@perl.org> wrote: > > >> > > >> # New Ticket Created by Juerd Waalboer > > >> # Please include the string: [perl #127144] > > >> # in the subject line of all future correspondence about this > > >> issue. > > >> # <URL: https://rt.perl.org/Ticket/Display.html?id=127144 > > > >> > > >> > > >> Bug: > > >> > > >>> my uint8 $x = 255; print $x, " -> "; $x = $x + 1; say $x; > > >> 255 -> 0 > > > What is the bug here??? Looks to me it’s entirely doing what is > > > expected? > > > > > > > > > > > > Liz
Turns out the the tests listed above where added to roast with https://github.com/perl6/roast/commit/c824a98985b739f2a0fa03aa144f2d7c7fb3606c Closing issue