aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5041.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5041.scala')
-rw-r--r--tests/pending/pos/t5041.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/pos/t5041.scala b/tests/pending/pos/t5041.scala
deleted file mode 100644
index 78a1b27d5..000000000
--- a/tests/pending/pos/t5041.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-case class Token(text: String, startIndex: Int)
-
-object Comment {
- def unapply(s: String): Option[Token] = None
-}
-
-object HiddenTokens {
- "foo" match { case Comment(_) => }
-}