As a follow-up: The following code works as expected:
$ perl6-j -e 'my @a; @a[0;1] = "foo"; @a[0;0] = "bar"; say @a.perl'
[["bar", "foo"],]
# New Ticket Created by Lloyd Fournier
# Please include the string: [perl #128342]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=128342 >
my token foo { .? };
say "a" ~~ /"a">/
should match like this does
say "a" ~~ /"a"/
a
# New Ticket Created by Christian Bartolomaeus
# Please include the string: [perl #128341]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=128341 >
The following code started to fail on rakudo-j with Rakudo commit 069b789af5:
I've tested both issues with the branch:
issue #1 (changing dependency contents leads to goofed re-precomp) -- Still
broken
issue #2 (collisions on timestamps leads to goofed re-precomp) -- Fixed!
for reference another example of issue #1 was reported recently:
https://rt.perl.org/Public/Bug/Dis