summaryrefslogtreecommitdiff
path: root/test/files/neg/interop_abstypetags_arenot_classmanifests.scala
blob: 5d88c90ffdff8348caf7a7c0a75e9a098c43c3af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.runtime.universe._

object Test extends App {
  def weakTypeTagIsnotClassManifest[T: WeakTypeTag] = {
    println(classManifest[T])
  }

  weakTypeTagIsnotClassManifest[Int]
  weakTypeTagIsnotClassManifest[String]
  weakTypeTagIsnotClassManifest[Array[Int]]
}