aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/freetypes_false_alarm1.scala
blob: b06e10efe6af4cdb8e07d70a5214435b64a888b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object Test extends dotty.runtime.LegacyApp {
  reify {
    val ru = scala.reflect.runtime.universe
    val tpe: ru.Type = ru.typeOf[List[Int]]
    println(tpe)
  }.eval
}