summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/pmbug.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/pmbug.scala')
-rw-r--r--test-nsc/files/pos/pmbug.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test-nsc/files/pos/pmbug.scala b/test-nsc/files/pos/pmbug.scala
deleted file mode 100644
index 7d94e7a8bd..0000000000
--- a/test-nsc/files/pos/pmbug.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Test {
-
- def flatten[a](l: List[List[a]]): List[a] = l match {
- case Nil => Nil
- case head :: tail => head ::: flatten(tail)
- }
-
-}