aboutsummaryrefslogblamecommitdiff
path: root/tests/disabled/macro/run/reify_newimpl_13.scala
blob: 79a99c334ee390106970047e355696c8822eb179 (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[T] {
      val code = reify {
        List[T](2.asInstanceOf[T])
      }
      println(code.eval)
    }

    try {
      new C[Int]
    } catch {
      case ex: Throwable =>
        println(ex)
    }
  }
}