summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-08-15 16:11:26 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-08-15 17:46:32 +0200
commit414106d32c1646f1e2f86040804555fedbbb667d (patch)
tree6f3108b7cab31417b64d0dc3d9cc1df4003af453 /test
parent19659ba878605cf5b6d9cbd3ba9ced812336817f (diff)
downloadscala-414106d32c1646f1e2f86040804555fedbbb667d.tar.gz
scala-414106d32c1646f1e2f86040804555fedbbb667d.tar.bz2
scala-414106d32c1646f1e2f86040804555fedbbb667d.zip
macroImplSigs => macroImplSig
We no longer have multiple canonical signatures for macro implementations, so it was time to put the List-List-List-based logic to rest.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/macro-invalidsig-params-namemismatch.check1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/neg/macro-invalidsig-params-namemismatch.check b/test/files/neg/macro-invalidsig-params-namemismatch.check
index 00d781a2ac..f2639d9350 100644
--- a/test/files/neg/macro-invalidsig-params-namemismatch.check
+++ b/test/files/neg/macro-invalidsig-params-namemismatch.check
@@ -2,6 +2,7 @@ Impls_Macros_1.scala:8: error: macro implementation has wrong shape:
required: (c: scala.reflect.macros.Context)(x: c.Expr[Int], y: c.Expr[Int]): c.Expr[Any]
found : (c: scala.reflect.macros.Context)(y: c.Expr[Int], x: c.Expr[Int]): Nothing
parameter names differ: x != y
+parameter names differ: y != x
def foo(x: Int, y: Int) = macro Impls.foo
^
one error found