aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala')
-rw-r--r--tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala b/tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala
new file mode 100644
index 000000000..98062a9c7
--- /dev/null
+++ b/tests/disabled/macro/pos/attachments-typed-ident/Impls_1.scala
@@ -0,0 +1,18 @@
+import scala.reflect.macros.blackbox.Context
+import language.experimental.macros
+
+object MyAttachment
+
+object Macros {
+ def impl(c: Context) = {
+ import c.universe._
+ import internal._
+ val ident = updateAttachment(Ident(TermName("bar")), MyAttachment)
+ assert(attachments(ident).get[MyAttachment.type].isDefined, attachments(ident))
+ val typed = c.typecheck(ident)
+ assert(attachments(typed).get[MyAttachment.type].isDefined, attachments(typed))
+ c.Expr[Int](typed)
+ }
+
+ def foo = macro impl
+}