aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2261.scala
blob: 06360d50010cf7e28a2742178933f67a5f4e28dd (plain) (blame)
1
2
3
4
5
6
7
8
9
class Bob[T]
object Test {
  implicit def foo2bar[T](xs: List[T]): Bob[T] = new Bob[T]
  var x: Bob[Int] = null
  x = List(1,2,3)
  // the problem here was that somehow the type variable that was used to infer the type argument for List.apply
  // would accumulate several conflicting constraints
  // can't reproduce with
}