aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5859.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5859.scala')
-rw-r--r--tests/pending/pos/t5859.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/pos/t5859.scala b/tests/pending/pos/t5859.scala
deleted file mode 100644
index 2a31e68ee..000000000
--- a/tests/pending/pos/t5859.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-
-class A {
- def f(xs: List[Int], ys: AnyRef*) = ()
- def f(xs: AnyRef*) = ()
-
- f()
- f(List[AnyRef](): _*)
- f(List(): _*)
- f(Nil: _*)
- f(Array(): _*)
- f(Array[AnyRef](): _*)
- f(List(1))
- f(List(1), Nil: _*)
- f(List(1), Array(): _*)
-}