summaryrefslogtreecommitdiff
path: root/test/files/run/bug1427.scala
blob: ab0a42c7b75e905016e7829dbf79bef1bfc7c9e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Bob[K[_]] {
  def foo(other: Any) = other match {
    case x: (Bob[X] forSome { type X[_] })  => true
    case _                                  => false
  }
}

object Test {
  def main(args: Array[String]): Unit = {
    val x = new Bob[List]
    val results = List(x, new Bob[Set], 55) map (x foo _)

    assert(results == List(true, true, false))
  }
}