rlox/interpreter/tests/lox/string/error_after_multiline.lox

7 lines
150 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
// Tests that we correctly track the line info across multiline strings.
var a = "1
2
3
";
err; // // expect runtime error: Undefined variable 'err'.