aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t6258.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t6258.scala')
-rw-r--r--tests/untried/neg/t6258.scala25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/untried/neg/t6258.scala b/tests/untried/neg/t6258.scala
new file mode 100644
index 000000000..19794b325
--- /dev/null
+++ b/tests/untried/neg/t6258.scala
@@ -0,0 +1,25 @@
+object Test {
+ val f : PartialFunction[_, Int] = { case a : Int => a } // undefined param
+
+ def foo[A](pf: PartialFunction[A, Int]): Unit = {};
+ foo { case a : Int => a } // undefined param
+
+ val g : PartialFunction[Int, _] = { case a : Int => a } // okay
+}
+
+
+// Another variation, seen in the wild with Specs2.
+class X {
+ trait Matcher[-T]
+
+ def bar[T](m: Matcher[T]) = null
+ def bar[T](i: Int) = null
+
+ def foo[T](p: PartialFunction[T, Any]): Matcher[T] = null
+
+ case class M[X](a: X)
+
+ bar[M[Any]] (foo { // undefined param
+ case M(_) => null
+ })
+}