aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t3353.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t3353.scala')
-rw-r--r--tests/pending/run/t3353.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/run/t3353.scala b/tests/pending/run/t3353.scala
deleted file mode 100644
index 472723b3c..000000000
--- a/tests/pending/run/t3353.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
-
- "foo" match {
- case Matcher(result) => println(result)
- }
-
- object Matcher{
- def unapply(s: String)(implicit secondParam: Option[String] = None) = Some("Got: " + s + " and " + secondParam)
- }
-}