summaryrefslogtreecommitdiff
path: root/test/files/pos/t7461/Macros_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7461/Macros_1.scala')
-rw-r--r--test/files/pos/t7461/Macros_1.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/pos/t7461/Macros_1.scala b/test/files/pos/t7461/Macros_1.scala
new file mode 100644
index 0000000000..353dec66d7
--- /dev/null
+++ b/test/files/pos/t7461/Macros_1.scala
@@ -0,0 +1,13 @@
+import scala.reflect.macros.Context
+import language.experimental.macros
+
+object Macros {
+ def impl(c: Context) = {
+ import c.universe._
+ val wut = c.typeCheck(Select(Literal(Constant(10)), newTermName("$minus")), silent = true)
+ // println(showRaw(wut, printIds = true, printTypes = true))
+ c.literalUnit
+ }
+
+ def foo = macro impl
+} \ No newline at end of file