summaryrefslogtreecommitdiff
path: root/test/files/neg/t6675-old-patmat.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t6675-old-patmat.scala')
-rw-r--r--test/files/neg/t6675-old-patmat.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/files/neg/t6675-old-patmat.scala b/test/files/neg/t6675-old-patmat.scala
deleted file mode 100644
index 4d500b77ba..0000000000
--- a/test/files/neg/t6675-old-patmat.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-object X {
- def unapply(s: String): Option[(Int,Int,Int)] = Some((1,2,3))
-}
-
-object Y {
- def unapplySeq(s: String): Option[Seq[(Int,Int,Int)]] = Some(Seq((1,2,3)))
-}
-
-object Test {
- "" match { case X(b) => b } // should warn under -Xlint. Not an error because of SI-6111
-
- "" match { case Y(b) => b } // no warning
-}