summaryrefslogtreecommitdiff
path: root/test/files/pos/t5706.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t5706.scala')
-rw-r--r--test/files/pos/t5706.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t5706.scala b/test/files/pos/t5706.scala
new file mode 100644
index 0000000000..847acb693f
--- /dev/null
+++ b/test/files/pos/t5706.scala
@@ -0,0 +1,10 @@
+import scala.reflect.makro.Context
+
+class Logger {
+ def error(message: String) = macro Impls.error
+}
+
+object Impls {
+ type LoggerContext = Context { type PrefixType = Logger }
+ def error(c: LoggerContext)(message: c.Expr[String]): c.Expr[Unit] = ???
+}