Add test case for block comments after line continuations

This commit is contained in:
Rangi42
2025-07-25 07:47:19 -04:00
parent d6a28a6259
commit 87c10988ed
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
println 2 / 2
println 6 / \ ; comment
3
println 6 \ / ; comment
2
println 8 / /* hello
world */ 2
println 10 \ / 2
println 12 \ / /* hello
world */ 2
println 14 / \ /* hello
world */ 2