summaryrefslogtreecommitdiff
path: root/test/files/neg/interop_typetags_arenot_classtags.scala
blob: 072c12adb087882843e204b7c8a04726ec308959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import scala.reflect.runtime.universe._
import scala.reflect.{ClassTag, classTag}

object Test extends App {
  def typeTagIsnotClassTag[T: TypeTag] = {
    println(classTag[T])
  }

  typeTagIsnotClassTag[Int]
  typeTagIsnotClassTag[String]
  typeTagIsnotClassTag[Array[Int]]
}