aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3859.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t3859.scala')
-rw-r--r--tests/pos/t3859.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/t3859.scala b/tests/pos/t3859.scala
index 992207301..486c1d4b2 100644
--- a/tests/pos/t3859.scala
+++ b/tests/pos/t3859.scala
@@ -1,4 +1,4 @@
class Test {
- def foo: Unit = bar(Array(): _*)
+ def foo: Unit = bar(Array[AnyRef](): _*)
def bar(values: AnyRef*): Unit = ()
}