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

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

scala> def pos_impl(c: reflect.macros.Context): c.Expr[String] =
  c.literal(c.enclosingPosition.getClass.toString)
pos_impl: (c: scala.reflect.macros.Context)c.Expr[String]

scala> def pos = macro pos_impl
pos: String

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

scala>