summaryrefslogtreecommitdiff
path: root/test/files/run/t4138.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4138.scala')
-rw-r--r--test/files/run/t4138.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t4138.scala b/test/files/run/t4138.scala
new file mode 100644
index 0000000000..131489e581
--- /dev/null
+++ b/test/files/run/t4138.scala
@@ -0,0 +1,6 @@
+object Test extends App {
+ object p extends scala.util.parsing.combinator.JavaTokenParsers
+
+ println(p.parse(p.stringLiteral, """"lir 'de\' ' \\ \n / upa \"new\" \t parsing""""))
+ println(p.parse(p.stringLiteral, """"s " lkjse""""))
+}