summaryrefslogtreecommitdiff
path: root/test/pending/pos/t2188.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t2188.scala')
-rw-r--r--test/pending/pos/t2188.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/pending/pos/t2188.scala b/test/pending/pos/t2188.scala
index e9f6e4fb2c..3c8ee57636 100644
--- a/test/pending/pos/t2188.scala
+++ b/test/pending/pos/t2188.scala
@@ -1,5 +1,7 @@
+// test no longer applicable. but I think the underlying problem is fixed in trunk
+
scala> implicit def toJavaList[A](t:collection.Sequence[A]):java.util.List[A] =
- | java.util.Arrays.asList(t.toArray:_*)
+ | java.util.Arrays.asList(t.toArray:_*) java.util.Arrays.asList(t.toArray:_*)
toJavaList: [A](t: Sequence[A])java.util.List[A]
scala> val x: java.util.List[String] = List("foo")