summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-04-30 01:01:53 -0700
committerPaul Phillips <paulp@improving.org>2013-04-30 01:11:14 -0700
commitd0a1f5b1c4d97f3e0368dc89691097a1b836a116 (patch)
tree6431083355f93f10f02b6e09223a896877cb1910 /test
parent3da1abe3a2e2752588ca8e2c7e889a321dae2037 (diff)
downloadscala-d0a1f5b1c4d97f3e0368dc89691097a1b836a116.tar.gz
scala-d0a1f5b1c4d97f3e0368dc89691097a1b836a116.tar.bz2
scala-d0a1f5b1c4d97f3e0368dc89691097a1b836a116.zip
SI-7385 crash in erroneous code
Less crashing, more emitting errors.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t7385.check10
-rw-r--r--test/files/neg/t7385.scala7
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/neg/t7385.check b/test/files/neg/t7385.check
new file mode 100644
index 0000000000..70d3c3fb61
--- /dev/null
+++ b/test/files/neg/t7385.check
@@ -0,0 +1,10 @@
+t7385.scala:2: error: '(' expected but identifier found.
+ do { println("bippy") } while i<10
+ ^
+t7385.scala:6: error: '(' expected but identifier found.
+ while i<10 { () }
+ ^
+t7385.scala:7: error: illegal start of simple expression
+}
+^
+three errors found
diff --git a/test/files/neg/t7385.scala b/test/files/neg/t7385.scala
new file mode 100644
index 0000000000..a7f801098b
--- /dev/null
+++ b/test/files/neg/t7385.scala
@@ -0,0 +1,7 @@
+object Bar {
+ do { println("bippy") } while i<10
+}
+
+object Foo {
+ while i<10 { () }
+}