aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t6381.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/t6381.check')
-rw-r--r--tests/disabled/macro/run/t6381.check19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/t6381.check b/tests/disabled/macro/run/t6381.check
new file mode 100644
index 000000000..49c6a784a
--- /dev/null
+++ b/tests/disabled/macro/run/t6381.check
@@ -0,0 +1,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