If a raku file ends with a backslash on the last line, rakudo does nothing and silently exits with status 0 (success).
Either report a compile-time error, or treat EOF as if there's an extra newline there so it would succeed.
$ cat bug.raku
die "Hi";
# if there were a blank line below this, the bug would not appear \
$ perl6 bug.raku
$ echo $?
0
$
perl6 -v): This is Rakudo version 2020.02-48-g4e3e937bc built on MoarVM version 2020.02 implementing Raku 6.d.I'm really surprised, but it's an actual bug!
Clearly it should continue executing the next file :-).
Most helpful comment
Clearly it should continue executing the next file :-).