summaryrefslogtreecommitdiff
path: root/test/files/pos/t5769.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t5769.scala')
-rw-r--r--test/files/pos/t5769.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t5769.scala b/test/files/pos/t5769.scala
index 523fe08a60..fdc46b65e9 100644
--- a/test/files/pos/t5769.scala
+++ b/test/files/pos/t5769.scala
@@ -1,9 +1,9 @@
// a.scala
-import scala.reflect.{ArrayTag, arrayTag}
+import scala.reflect.{ClassTag, classTag}
class A {
type AI = Array[Int]
- def f1 = arrayTag[Array[Int]]
- def f2 = arrayTag[AI]
+ def f1 = classTag[Array[Int]]
+ def f2 = classTag[AI]
} \ No newline at end of file