summaryrefslogblamecommitdiff
path: root/test/files/run/t6381.check
blob: 5070b67e4632c6b615fcb9c6f3241317cc56d311 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                
                              




                                                              
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
defined term macro pos: String

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

scala>