summaryrefslogtreecommitdiff
path: root/test/files/pos/t8064/Macro_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8064/Macro_1.scala')
-rw-r--r--test/files/pos/t8064/Macro_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t8064/Macro_1.scala b/test/files/pos/t8064/Macro_1.scala
index dd42950b34..9f1e6955b4 100644
--- a/test/files/pos/t8064/Macro_1.scala
+++ b/test/files/pos/t8064/Macro_1.scala
@@ -5,6 +5,6 @@ object Macro {
def apply(a: Any): Any = macro impl
def impl(c: Context)(a: c.Tree): c.Tree = {
- c.resetLocalAttrs(a)
+ c.untypecheck(a)
}
}