aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/reify_newimpl_20.scala
blob: c483e0b7e0f503b6ff6f3639de718279601d0f4d (plain) (tree)
1
2
3
4
5



                                       
                                             









                                                                                   
 
import scala.reflect.runtime.universe._
import scala.tools.reflect.ToolBox
import scala.tools.reflect.Eval

object Test extends dotty.runtime.LegacyApp {
  class C {
    type T
    implicit val tt: TypeTag[T] = implicitly[TypeTag[Int]].asInstanceOf[TypeTag[T]]
    val code = reify {
      List[T](2.asInstanceOf[T])
    }
    println(code.eval)
  }

  new C { type T = String } // this "mistake" is made for a reason!
}