summaryrefslogtreecommitdiff
path: root/test/files/pos/bug2168.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug2168.scala')
-rw-r--r--test/files/pos/bug2168.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/files/pos/bug2168.scala b/test/files/pos/bug2168.scala
deleted file mode 100644
index e3b24b6a72..0000000000
--- a/test/files/pos/bug2168.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object Test extends App {
- def foo1(x: AnyRef) = x match { case x: Function0[_] => x() }
- def foo2(x: AnyRef) = x match { case x: Function0[Any] => x() }
-}
-
-