summaryrefslogtreecommitdiff
path: root/test/files/run/interop_manifests_are_concretetypetags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/interop_manifests_are_concretetypetags.scala')
-rw-r--r--test/files/run/interop_manifests_are_concretetypetags.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/interop_manifests_are_concretetypetags.scala b/test/files/run/interop_manifests_are_concretetypetags.scala
new file mode 100644
index 0000000000..0b82a56d0a
--- /dev/null
+++ b/test/files/run/interop_manifests_are_concretetypetags.scala
@@ -0,0 +1,10 @@
+object Test extends App {
+ def manifestIsConcreteTypeTag[T: Manifest] = {
+ println(concreteTypeTag[T].tpe)
+ println(concreteTypeTag[T].erasure)
+ }
+
+ manifestIsConcreteTypeTag[Int]
+ manifestIsConcreteTypeTag[String]
+ manifestIsConcreteTypeTag[Array[Int]]
+} \ No newline at end of file