summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala')
-rw-r--r--test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala b/test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala
index 21735c10d5..6d7eab5f9a 100644
--- a/test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala
+++ b/test/files/run/macro-reify-groundtypetag-typeparams-tags/Test.scala
@@ -1,9 +1,9 @@
import scala.reflect.mirror._
object Test extends App {
- def fooTypeTag[T: GroundTypeTag] = {
- println(implicitly[GroundTypeTag[T]])
- println(implicitly[GroundTypeTag[List[T]]])
+ def fooTypeTag[T: ConcreteTypeTag] = {
+ println(implicitly[ConcreteTypeTag[T]])
+ println(implicitly[ConcreteTypeTag[List[T]]])
}
fooTypeTag[Int]
} \ No newline at end of file