aboutsummaryrefslogblamecommitdiff
path: root/tests/disabled/macro/run/reify_generic2.scala
blob: 6941d9ff71008df744e2662859102e8f90de3e3f (plain) (tree)
1
2
3
4
5
6
7
8
9


                                       
                                             




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

object Test extends dotty.runtime.LegacyApp {
  reify {
    class C
    val product = List(new C, new C).length * List[C](new C, new C).length
    println(product)
  }.eval
}