summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-11-08 09:53:06 -0800
committerEugene Burmako <xeno.by@gmail.com>2013-11-08 09:53:06 -0800
commite057fa5e08e352f1c9ce57b4f86f1c69be02c72a (patch)
tree3c5805b196eebcdaab07262effca5197bf0502c5 /test/files
parent0354d4bea7f900d329c17542d414f6969b239901 (diff)
parentd15ed081efdcb70bb77b5f76b2ac36a7e6b009ba (diff)
downloadscala-e057fa5e08e352f1c9ce57b4f86f1c69be02c72a.tar.gz
scala-e057fa5e08e352f1c9ce57b4f86f1c69be02c72a.tar.bz2
scala-e057fa5e08e352f1c9ce57b4f86f1c69be02c72a.zip
Merge pull request #3110 from xeno-by/topic/7776-backport
[backport] SI-7776 post-erasure signature clashes are now macro-aware
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t7776.check0
-rw-r--r--test/files/pos/t7776.scala12
2 files changed, 12 insertions, 0 deletions
diff --git a/test/files/pos/t7776.check b/test/files/pos/t7776.check
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/files/pos/t7776.check
diff --git a/test/files/pos/t7776.scala b/test/files/pos/t7776.scala
new file mode 100644
index 0000000000..0340facd1b
--- /dev/null
+++ b/test/files/pos/t7776.scala
@@ -0,0 +1,12 @@
+import scala.language.experimental.macros
+import scala.reflect.macros.Context
+
+class MacroErasure {
+ def app(f: Any => Any, x: Any): Any = macro MacroErasure.appMacro
+ def app[A](f: A => Any, x: Any): Any = macro MacroErasure.appMacroA[A]
+}
+
+object MacroErasure {
+ def appMacro(c: Context)(f: c.Expr[Any => Any], x: c.Expr[Any]): c.Expr[Any] = ???
+ def appMacroA[A](c: Context)(f: c.Expr[A => Any], x: c.Expr[Any])(implicit tt: c.WeakTypeTag[A]): c.Expr[Any] = ???
+} \ No newline at end of file