summaryrefslogtreecommitdiff
path: root/test/files/run/classmanifests_new_alias.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/classmanifests_new_alias.scala')
-rw-r--r--test/files/run/classmanifests_new_alias.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/run/classmanifests_new_alias.scala b/test/files/run/classmanifests_new_alias.scala
new file mode 100644
index 0000000000..12bd93bab6
--- /dev/null
+++ b/test/files/run/classmanifests_new_alias.scala
@@ -0,0 +1,5 @@
+object Test extends App {
+ type CM[T] = ClassManifest[T]
+ println(implicitly[CM[Int]])
+ println(implicitly[CM[Int]] eq Manifest.Int)
+} \ No newline at end of file