aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/interop_classmanifests_arenot_typetags.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/interop_classmanifests_arenot_typetags.scala')
-rw-r--r--tests/untried/neg/interop_classmanifests_arenot_typetags.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/untried/neg/interop_classmanifests_arenot_typetags.scala b/tests/untried/neg/interop_classmanifests_arenot_typetags.scala
new file mode 100644
index 000000000..b89feaf80
--- /dev/null
+++ b/tests/untried/neg/interop_classmanifests_arenot_typetags.scala
@@ -0,0 +1,11 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ def classManifestIsnotTypeTag[T: ClassManifest] = {
+ println(implicitly[TypeTag[T]])
+ }
+
+ classManifestIsnotTypeTag[Int]
+ classManifestIsnotTypeTag[String]
+ classManifestIsnotTypeTag[Array[Int]]
+}