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.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/interop_manifests_are_typetags.scala b/test/files/run/interop_manifests_are_typetags.scala
new file mode 100644
index 0000000000..03a7b7b6d5
--- /dev/null
+++ b/test/files/run/interop_manifests_are_typetags.scala
@@ -0,0 +1,10 @@
+object Test extends App {
+ def manifestIsTypeTag[T: Manifest] = {
+ println(typeTag[T].tpe)
+ println(typeTag[T].erasure)
+ }
+
+ manifestIsTypeTag[Int]
+ manifestIsTypeTag[String]
+ manifestIsTypeTag[Array[Int]]
+} \ No newline at end of file