summaryrefslogtreecommitdiff
path: root/test/files/pos/t2413
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2010-06-29 12:32:45 +0000
committerLukas Rytz <lukas.rytz@epfl.ch>2010-06-29 12:32:45 +0000
commit1067f5f55ca0de0035fee3d0179203801f0b4b87 (patch)
treea76deb0da297f758321676fd9e80b39a2b3b46a9 /test/files/pos/t2413
parentbf639030734f9eed8c07342fb30e5d4fc94d850b (diff)
downloadscala-1067f5f55ca0de0035fee3d0179203801f0b4b87.tar.gz
scala-1067f5f55ca0de0035fee3d0179203801f0b4b87.tar.bz2
scala-1067f5f55ca0de0035fee3d0179203801f0b4b87.zip
close #2413.
Diffstat (limited to 'test/files/pos/t2413')
-rw-r--r--test/files/pos/t2413/TestJava.java7
-rw-r--r--test/files/pos/t2413/TestScalac.scala23
2 files changed, 30 insertions, 0 deletions
diff --git a/test/files/pos/t2413/TestJava.java b/test/files/pos/t2413/TestJava.java
new file mode 100644
index 0000000000..252c01fbc0
--- /dev/null
+++ b/test/files/pos/t2413/TestJava.java
@@ -0,0 +1,7 @@
+package pack;
+
+public class TestJava {
+ protected String repeatParam(String ... items) {
+ return "nothing";
+ }
+}
diff --git a/test/files/pos/t2413/TestScalac.scala b/test/files/pos/t2413/TestScalac.scala
new file mode 100644
index 0000000000..098e852dd7
--- /dev/null
+++ b/test/files/pos/t2413/TestScalac.scala
@@ -0,0 +1,23 @@
+import pack.TestJava
+
+class Foo extends TestJava {
+
+ // THIS METHOD YIELDS TO CRASH
+/* def foomethod : Option[String] => Unit = {
+ case None =>
+ val path = repeatParam("s","a","b","c")
+ ()
+ case Some(error) =>
+ ()
+ }
+
+ // THIS IS OK
+ def foomethod2 : String = repeatParam("s","a");
+
+ // THIS IS OK
+ val aVal = repeatParam("1","2","3") */
+
+ // THIS YIELDS TO CRASH
+ for (a <- 1 to 4 ; anotherVal = repeatParam("1","2","3"))
+ yield anotherVal
+}