summaryrefslogtreecommitdiff
path: root/test/files/run/reify_newimpl_22.check
blob: 24334df92c9d71a712a35855f106ae370614f72c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Type in expressions to have them evaluated.
Type :help for more information.

scala> import scala.reflect.runtime.universe._
import scala.reflect.runtime.universe._

scala> import scala.tools.reflect.ToolBox
import scala.tools.reflect.ToolBox

scala> import scala.tools.reflect.Eval
import scala.tools.reflect.Eval

scala> {
  val x = 2
  val code = reify {
    x
  }
  println(code.eval)
}
<console>:18: free term: Ident(TermName("x")) defined by res0  in <console>:17:14
         val code = reify {
                          ^
2

scala> :quit