summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pending/pos/bug2261.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/pos/bug2261.scala b/test/pending/pos/bug2261.scala
new file mode 100644
index 0000000000..528f769171
--- /dev/null
+++ b/test/pending/pos/bug2261.scala
@@ -0,0 +1,6 @@
+object Test extends Application {
+ class Bob[T]
+ implicit def foo2bar[T](xs: List[T]): Bob[T] = new Bob[T]
+ var x: Bob[Int] = null
+ x = List(1,2,3)
+} \ No newline at end of file