aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/reify_renamed_term_basic.scala
blob: 7971d3d11778ba96ff7fc36ff38cf13f03e02048 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object A {
  object B {
    val c = ()
  }
}

object Test extends dotty.runtime.LegacyApp {
  import A.{B => X}
  import A.B.{c => y}
  import X.{c => z}

  val expr = reify (
    X.c, y, z
  )

  println(expr.eval)
}