summaryrefslogtreecommitdiff
path: root/test/files/pos/t0905.scala
blob: 8cd84759cf79061925340978a17c911e4b2cf95f (plain) (blame)
1
2
3
4
5
6
object Test {
  trait A[T]
  def f(implicit p: A[T] forSome { type T } ) = null
  implicit val x: A[T] forSome { type T } = null
  println(f)
}