mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 12:22:42 +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'.
|