From 082a427ff9572e002bb1fc5c71e129e857f0aa81 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Thu, 1 Oct 2009 13:34:17 +0000 Subject: missing test cases for #2261, #2293, #2421 --- test/files/pos/t2261.scala | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/files/pos/t2261.scala (limited to 'test/files/pos/t2261.scala') diff --git a/test/files/pos/t2261.scala b/test/files/pos/t2261.scala new file mode 100644 index 0000000000..aac5c9e0fd --- /dev/null +++ b/test/files/pos/t2261.scala @@ -0,0 +1,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 +} \ No newline at end of file -- cgit v1.2.3