summaryrefslogtreecommitdiff
path: root/test/files/neg/t6074.scala
blob: 8c14f00f19d7bd2dfb4024310733b065870ec3d5 (plain) (blame)
1
2
3
4
5
6
class A private () { }
class B { }
object T {
  implicit def a2b(a: A): B = null
  def t = new A()
}