summaryrefslogtreecommitdiff
path: root/test/files/run/t6381.check
blob: 49c6a784ad51af4b639c779450ee06549cd428c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Type in expressions to have them evaluated.
Type :help for more information.

scala> import scala.language.experimental.macros
import scala.language.experimental.macros

scala> def pos_impl(c: scala.reflect.macros.blackbox.Context): c.Expr[String] = {
  import c.universe._
  c.Expr[String](Literal(Constant(c.enclosingPosition.getClass.toString)))
}
pos_impl: (c: scala.reflect.macros.blackbox.Context)c.Expr[String]

scala> def pos: String = macro pos_impl
defined term macro pos: String

scala> pos
res0: String = class scala.reflect.internal.util.RangePosition

scala> :quit