summaryrefslogtreecommitdiff
path: root/test/files/scalap/classWithExistential/A.scala
blob: 2a77a842c99bec5770878e9756da2cdb6fe61666 (plain) (blame)
1
2
3
class ClassWithExistential {
  def foo[A, B] : A=> B forSome {type A <: Seq[Int]; type B >: String} = null
}