summaryrefslogtreecommitdiff
path: root/test/files/run/interop_manifests_are_typetags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/interop_manifests_are_typetags.scala')
-rw-r--r--test/files/run/interop_manifests_are_typetags.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/files/run/interop_manifests_are_typetags.scala b/test/files/run/interop_manifests_are_typetags.scala
index 03a7b7b6d5..294d3c22de 100644
--- a/test/files/run/interop_manifests_are_typetags.scala
+++ b/test/files/run/interop_manifests_are_typetags.scala
@@ -1,7 +1,8 @@
+import scala.reflect.runtime.universe._
+
object Test extends App {
def manifestIsTypeTag[T: Manifest] = {
- println(typeTag[T].tpe)
- println(typeTag[T].erasure)
+ println(typeOf[T])
}
manifestIsTypeTag[Int]