summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidsig-params-namemismatch.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-12-06 21:32:52 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-12-06 21:32:52 +0100
commit3faa2eedd8b9f58f29a5aeed710ffb91ec0f860b (patch)
tree70b91d4326fde0c17a3a561f541edd465eac7224 /test/files/neg/macro-invalidsig-params-namemismatch.check
parent7e996c1b05902df0144709a37d9149252885495c (diff)
downloadscala-3faa2eedd8b9f58f29a5aeed710ffb91ec0f860b.tar.gz
scala-3faa2eedd8b9f58f29a5aeed710ffb91ec0f860b.tar.bz2
scala-3faa2eedd8b9f58f29a5aeed710ffb91ec0f860b.zip
[nomaster] better error messages for various macro definition errors
backport of 1d3ec4e708154ec05554f540d7d68ed55dc12426
Diffstat (limited to 'test/files/neg/macro-invalidsig-params-namemismatch.check')
-rw-r--r--test/files/neg/macro-invalidsig-params-namemismatch.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/macro-invalidsig-params-namemismatch.check b/test/files/neg/macro-invalidsig-params-namemismatch.check
index 4029bc8129..82612a94d3 100644
--- a/test/files/neg/macro-invalidsig-params-namemismatch.check
+++ b/test/files/neg/macro-invalidsig-params-namemismatch.check
@@ -1,4 +1,4 @@
-Impls_Macros_1.scala:8: error: macro implementation has wrong shape:
+Impls_Macros_1.scala:8: error: macro implementation has incompatible 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