aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t1333.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t1333.scala')
-rw-r--r--tests/pending/run/t1333.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/pending/run/t1333.scala b/tests/pending/run/t1333.scala
deleted file mode 100644
index 1696629cb..000000000
--- a/tests/pending/run/t1333.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-object Test {
- case class A(x: Int)(y: Int)(z: String)
-
- def f(x: Any) = x match {
- case A(x) => x
- case _ => -1
- }
-
- def main(args: Array[String]): Unit = {
- println(f(A(10)(20)("abc")))
- println(f(A(-10)(20)("abc")))
- println(f(List(1)))
- }
-}