summaryrefslogtreecommitdiff
path: root/test/files/pos/t2261.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2009-10-01 13:34:17 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2009-10-01 13:34:17 +0000
commit082a427ff9572e002bb1fc5c71e129e857f0aa81 (patch)
treef46b02f21b4d8fef7d9807e7f3b04a7fe9d7cf2f /test/files/pos/t2261.scala
parente000ae4a5a2a9564a550a44f56abe48eaaccd9fd (diff)
downloadscala-082a427ff9572e002bb1fc5c71e129e857f0aa81.tar.gz
scala-082a427ff9572e002bb1fc5c71e129e857f0aa81.tar.bz2
scala-082a427ff9572e002bb1fc5c71e129e857f0aa81.zip
missing test cases for #2261, #2293, #2421
Diffstat (limited to 'test/files/pos/t2261.scala')
-rw-r--r--test/files/pos/t2261.scala9
1 files changed, 9 insertions, 0 deletions
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