summaryrefslogtreecommitdiff
path: root/test/files/pos/bug2261.scala
blob: fcb9821b693e744f31f6cbcceeb40936748ba8c3 (plain) (blame)
1
2
3
4
5
6
object Test extends App {
  class Bob[T]
  implicit def foo2bar[T](xs: List[T]): Bob[T] = new Bob[T]
  var x: Bob[Int] = null
  x = List(1,2,3)
}