summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug2261.scala
blob: 528f769171da2c3724804f4551b5bfc45c2c7865 (plain) (blame)
1
2
3
4
5
6
object Test extends Application {
  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)
}