summaryrefslogtreecommitdiff
path: root/test/files/pos/attachments-typed-another-ident/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/attachments-typed-another-ident/Impls_1.scala')
-rw-r--r--test/files/pos/attachments-typed-another-ident/Impls_1.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/attachments-typed-another-ident/Impls_1.scala b/test/files/pos/attachments-typed-another-ident/Impls_1.scala
index 957bafc6ae..c3f541075e 100644
--- a/test/files/pos/attachments-typed-another-ident/Impls_1.scala
+++ b/test/files/pos/attachments-typed-another-ident/Impls_1.scala
@@ -6,7 +6,7 @@ object MyAttachment
object Macros {
def impl(c: Context) = {
import c.universe._
- val ident = Ident(newTermName("bar")) updateAttachment MyAttachment
+ val ident = Ident(TermName("bar")) updateAttachment MyAttachment
assert(ident.attachments.get[MyAttachment.type].isDefined, ident.attachments)
val typed = c.typeCheck(ident)
assert(typed.attachments.get[MyAttachment.type].isDefined, typed.attachments)