summaryrefslogtreecommitdiff
path: root/test/files/run/classmanifests_new_alias.scala
blob: 777bd5dd6d4560b0a0afbd00ba206ce613f62320 (plain) (blame)
1
2
3
4
5
6
7
@deprecated("Suppress warnings", since="2.11")
object Test extends App {
  type CM[T] = ClassManifest[T]
  println(implicitly[CM[Int]])
  println(implicitly[CM[Int]] eq Manifest.Int)
}