Yes.
Current message: An operation first awaited: in block <unit> at test.p6 line 7 Died with the exception: Died in block <unit> at test.p6 line 4 This was done in https://github.com/rakudo/rakudo/commit/abf6caf06eb7e48674d4e22a4ad6b580e5efecbf 「testneeded」, although maybe there are tests for it already. On 2015-09-25 09:37:49, jdv79 wrote: > [jdv@wieldy ~]$ cat -n test.p6 > 1 use v6; > 2 > 3 my $supply = supply { > 4 die; > 5 } > 6 > 7 react { > 8 whenever $supply { > 9 > 10 } > 11 } > 12 > [jdv@wieldy ~]$ perl6 test.p6 > Died > in block <unit> at test.p6:7 > > [jdv@wieldy ~]$ perl6 -v > This is perl6 version 2015.09-102-gf89dc23 built on MoarVM version > 2015.09-35-gd15a446 > [jdv@wieldy ~]$ > > > Could we report the error being at line 4 instead of 7? > > Thanks, > jdv