aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t2958.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t2958.scala')
-rw-r--r--tests/pending/run/t2958.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/run/t2958.scala b/tests/pending/run/t2958.scala
deleted file mode 100644
index cf4867ab5..000000000
--- a/tests/pending/run/t2958.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-object Test {
- def f(args: Array[String]) = args match {
- case Array("-p", prefix, from, to) =>
- prefix + from + to
-
- case Array(from, to) =>
- from + to
-
- case _ =>
- "default"
- }
-
- def main(args: Array[String]): Unit = {
- assert(f(Array("1", "2")) == "12")
- }
-}