summaryrefslogtreecommitdiff
path: root/test/files/jvm/ticket2163/ticket2163.scala
blob: d30bfe251bafe99eb87a5caf53cb79ea425169c1 (plain) (blame)
1
2
3
4
5
class Ticket2163Scala[CC[X]](x: CC[Int]) {
  def bar[DD[X]](meh: DD[Int]): CC[Int] = x
}

object Test extends Application {}