4.1.7, win10, eclipse
x = "x\ny\n , "\n";
BUILD: ERROR: offset 2439, count 8, length 2446BUILD: Complete
In this case there isn't a specific line number, as with the miss-match, the error isn't really until the end of the file. That's why you see the 24xx numbers.
yes I know, but error should be e.g.
BUILD: ERROR: FILE.mc:101: any error message
What it seems to be saying is you have miss-matched double quotes
Take out the " right after the ,
x = "x\ny\n , \n";