summaryrefslogtreecommitdiff
path: root/test/files/run/interop_classmanifests_arenot_typetags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/interop_classmanifests_arenot_typetags.scala')
-rw-r--r--test/files/run/interop_classmanifests_arenot_typetags.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/run/interop_classmanifests_arenot_typetags.scala b/test/files/run/interop_classmanifests_arenot_typetags.scala
new file mode 100644
index 0000000000..d65a5124d7
--- /dev/null
+++ b/test/files/run/interop_classmanifests_arenot_typetags.scala
@@ -0,0 +1,11 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ def classManifestIsnotTypeTag[T: ClassManifest] = {
+ println(typeOf[T])
+ }
+
+ classManifestIsnotTypeTag[Int]
+ classManifestIsnotTypeTag[String]
+ classManifestIsnotTypeTag[Array[Int]]
+} \ No newline at end of file