aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7461
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7461')
-rw-r--r--tests/untried/pos/t7461/Macros_1.scala13
-rw-r--r--tests/untried/pos/t7461/Test_2.scala3
2 files changed, 16 insertions, 0 deletions
diff --git a/tests/untried/pos/t7461/Macros_1.scala b/tests/untried/pos/t7461/Macros_1.scala
new file mode 100644
index 000000000..74ebf5af9
--- /dev/null
+++ b/tests/untried/pos/t7461/Macros_1.scala
@@ -0,0 +1,13 @@
+import scala.reflect.macros.blackbox.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.Expr[Unit](q"()")
+ }
+
+ def foo = macro impl
+}
diff --git a/tests/untried/pos/t7461/Test_2.scala b/tests/untried/pos/t7461/Test_2.scala
new file mode 100644
index 000000000..866e3dc6f
--- /dev/null
+++ b/tests/untried/pos/t7461/Test_2.scala
@@ -0,0 +1,3 @@
+class C {
+ def foo = Macros.foo
+}