summaryrefslogtreecommitdiff
path: root/test/files/run/t4216.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4216.scala')
-rw-r--r--test/files/run/t4216.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t4216.scala b/test/files/run/t4216.scala
index d9395cf538..ecaae5bea2 100644
--- a/test/files/run/t4216.scala
+++ b/test/files/run/t4216.scala
@@ -4,8 +4,8 @@ import scala.tools.partest.ReplTest
object Test extends ReplTest {
def code =
"""
- |import scala.reflect.ArrayTag
- |def f[A: ArrayTag](a: A) = java.util.Arrays.asList(Array(a): _*)
+ |import scala.reflect.ClassTag
+ |def f[A: ClassTag](a: A) = java.util.Arrays.asList(Array(a): _*)
|f(".")
|f(0)
|def i(a: Int) = java.util.Arrays.asList(Array(a): _*)