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 +++++++++ test/files/pos/t2293.scala | 5 +++++ 2 files changed, 14 insertions(+) create mode 100644 test/files/pos/t2261.scala create mode 100644 test/files/pos/t2293.scala (limited to 'test/files') 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 diff --git a/test/files/pos/t2293.scala b/test/files/pos/t2293.scala new file mode 100644 index 0000000000..65f717f851 --- /dev/null +++ b/test/files/pos/t2293.scala @@ -0,0 +1,5 @@ +import scala.collection.JavaConversions._ + +object Test { + val m: java.util.Map[String,String] = collection.mutable.Map("1"->"2") +} \ No newline at end of file -- cgit v1.2.3