aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t5859.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t5859.scala')
-rw-r--r--tests/pos/t5859.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pos/t5859.scala b/tests/pos/t5859.scala
index 2a31e68ee..60ec8b4cb 100644
--- a/tests/pos/t5859.scala
+++ b/tests/pos/t5859.scala
@@ -7,9 +7,9 @@ class A {
f(List[AnyRef](): _*)
f(List(): _*)
f(Nil: _*)
- f(Array(): _*)
+ // f(Array(): _*) // undetermined ClassTag
f(Array[AnyRef](): _*)
f(List(1))
f(List(1), Nil: _*)
- f(List(1), Array(): _*)
+ // f(List(1), Array(): _*) // undetermined ClassTag
}