summaryrefslogtreecommitdiff
path: root/test/files/pos/t7294.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7294.scala')
-rw-r--r--test/files/pos/t7294.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/files/pos/t7294.scala b/test/files/pos/t7294.scala
deleted file mode 100644
index ccac2b1400..0000000000
--- a/test/files/pos/t7294.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-object Test {
- // no fruitless warning as Tuple2 isn't (yet) final.
- // The corresponding `neg` test will treat it as final
- // for the purposes of these tests under -Xfuture.
- (1, 2) match { case Seq() => 0; case _ => 1 }
-}