https://github.com/rakudo/rakudo/issues/4039
On Tue, Nov 17, 2020 at 3:12 AM yary <not....@gmail.com> wrote: > > Open a bug report at https://github.com/rakudo/rakudo/issues/ showing the > change in behavior > > -y > > > On Mon, Nov 16, 2020 at 4:39 PM Ralph Mellor <ralphdjmel...@gmail.com> wrote: >> >> say $*PERL.version; # v6.d >> say $*PERL.compiler.version; # v2018.12 >> say ({ 1 | -1 } ... *)[^3]; # (any(1, -1) any(1, -1) any(1, -1)) >> >> say $*PERL.version; # v6.d >> say $*PERL.compiler.version; # v2020.07 >> say ({ 1 | -1 } ... *)[^3]; # ((any(1, -1)) (any(1, -1)) (any(1, -1)))