Type in expressions to have them evaluated. Type :help for more information. scala> scala> import scala.reflect.mirror._ import scala.reflect.mirror._ scala> { val x = 2 val code = reify { val y = reify { x } y.eval } println(code.eval) } :15: this splice cannot be resolved statically y.eval ^ 2 scala> scala>