mlox/lox.t/string/error_after_multiline.lox

7 lines
150 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +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'.