summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug2261.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/bug2261.scala')
-rw-r--r--test/pending/pos/bug2261.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/pending/pos/bug2261.scala b/test/pending/pos/bug2261.scala
deleted file mode 100644
index a499af838a..0000000000
--- a/test/pending/pos/bug2261.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-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)
-}