# New Ticket Created by Alex Jakimenko
# Please include the string: [perl #127857]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=127857 >
Code:
loop (my $x = 0, $x < 10, $x++) {}
Result:
===SORRY!=== Error while compiling -e
Malformed loop spec
at -e:1
------> loop (my $x = 0, $x < 10, $x++⏏) {}
The error message is not bad at all. But it would be awesome if it could detect
that the programmer used commas instead of semicolons.