summaryrefslogtreecommitdiff
path: root/test/files/run/interpreter.scala
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-06-03 12:25:37 +0000
committerLex Spoon <lex@lexspoon.org>2007-06-03 12:25:37 +0000
commit724e68bab0d480fd9379afcbbb56ccc098770706 (patch)
treee43f183424ec9c02c261fb17a7dabdf18c84fea2 /test/files/run/interpreter.scala
parentae8da76c0141c0582577993ccfb24a3ad7f53d23 (diff)
downloadscala-724e68bab0d480fd9379afcbbb56ccc098770706.tar.gz
scala-724e68bab0d480fd9379afcbbb56ccc098770706.tar.bz2
scala-724e68bab0d480fd9379afcbbb56ccc098770706.zip
The parser no longer signals "incomplete input"...
The parser no longer signals "incomplete input" in cases where the input already has an outright syntax error.
Diffstat (limited to 'test/files/run/interpreter.scala')
-rw-r--r--test/files/run/interpreter.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/interpreter.scala b/test/files/run/interpreter.scala
index 22dbf4754d..c59ce9f758 100644
--- a/test/files/run/interpreter.scala
+++ b/test/files/run/interpreter.scala
@@ -75,6 +75,13 @@ val x20 = 1
val two = one + x5
+
+// interior syntax errors should *not* go into multi-line input mode.
+// both of the following should abort immediately:
+def x => y => z
+[1,2,3]
+
+
</code>.text