]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/StringEscape.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / StringEscape.scl
1 main = "a\nb\"c\'d"
2 --
3 a
4 b"c'd
5 --
6 main = "a\u0053"
7 --
8 aS
9 --
10 main = "a\xb"
11 --
12 1:8-1:10: Illegal string escape character.