rlox/interpreter/tests/lox/string/error_after_multiline.lox
2024-09-01 19:15:55 +02:00

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'.