summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala')
-rw-r--r--test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala b/test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala
index d5ee61b91d..1302999da6 100644
--- a/test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala
+++ b/test/files/neg/macro-reify-groundtypetag-hktypeparams-notags/Test.scala
@@ -2,8 +2,8 @@ import scala.reflect.mirror._
object Test extends App {
def fooNoTypeTagHK[C[_], T] = {
- println(implicitly[GroundTypeTag[C[T]]])
- println(implicitly[GroundTypeTag[List[C[T]]]])
+ println(implicitly[ConcreteTypeTag[C[T]]])
+ println(implicitly[ConcreteTypeTag[List[C[T]]]])
}
fooNoTypeTagHK[List, Int]
} \ No newline at end of file