summaryrefslogtreecommitdiff
path: root/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala')
-rw-r--r--test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala b/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala
index c9b210f35a..de235f51cc 100644
--- a/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala
+++ b/test/files/run/macro-reify-typetag-usegroundtypetag/Test.scala
@@ -1,7 +1,7 @@
import scala.reflect.mirror._
object Test extends App {
- def fooTypeTag[T: GroundTypeTag] = {
+ def fooTypeTag[T: ConcreteTypeTag] = {
println(implicitly[TypeTag[T]])
println(implicitly[TypeTag[List[T]]])
}