mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 04:22:41 +00:00
7 lines
No EOL
150 B
Lox
7 lines
No EOL
150 B
Lox
// Tests that we correctly track the line info across multiline strings.
|
|
var a = "1
|
|
2
|
|
3
|
|
";
|
|
|
|
err; // // expect runtime error: Undefined variable 'err'.
|