weird-errors.t (rakudo-2020.08.2) | : | weird-errors.t (rakudo-2020.09) | ||
---|---|---|---|---|
skipping to change at line 119 | skipping to change at line 119 | |||
# RT #123570 | # RT #123570 | |||
{ | { | |||
is ((((6103515625/5) * 4 + 123327057) ** 2) % 6103515625), | is ((((6103515625/5) * 4 + 123327057) ** 2) % 6103515625), | |||
(((1220703125 * 4 + 123327057) ** 2) % 6103515625), | (((1220703125 * 4 + 123327057) ** 2) % 6103515625), | |||
"at one point rakudo evaluated the first expression to 0, RT #123570" | "at one point rakudo evaluated the first expression to 0, RT #123570" | |||
} | } | |||
# RT #125365 | # RT #125365 | |||
is_run( | is_run( | |||
'0.^methods(:all).sort', | 'note 0.^methods(:all).sort.elems', | |||
{ status => 0, err => -> $o { $o.chars > 2 }}, | { status => 0, err => -> $o { $o ~~ / ^ \d+ \n $ / }}, | |||
'sorting method list does not segfault', | 'sorting method list does not segfault', | |||
); | ); | |||
# RT #123684 | # RT #123684 | |||
is_run '{;}', | is_run '{;}', | |||
{ | { | |||
status => 0, | status => 0, | |||
err => '', | err => '', | |||
}, | }, | |||
'empty code block does not crash (used to do that on JVM)'; | 'empty code block does not crash (used to do that on JVM)'; | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |