summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidsig-params-namemismatch.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-08-16 22:16:56 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-08-17 01:49:31 +0200
commit78f9ef3906c78413ff8835fdad3849bfe5516be2 (patch)
tree369ceffd85292f9e0bf821ca2139fcf84bb2d388 /test/files/neg/macro-invalidsig-params-namemismatch.check
parent4ea915c599d134ceeac67962e3cae88672b25b26 (diff)
downloadscala-78f9ef3906c78413ff8835fdad3849bfe5516be2.tar.gz
scala-78f9ef3906c78413ff8835fdad3849bfe5516be2.tar.bz2
scala-78f9ef3906c78413ff8835fdad3849bfe5516be2.zip
shaves more than 150 lines off typedMacroBody
Diffstat (limited to 'test/files/neg/macro-invalidsig-params-namemismatch.check')
-rw-r--r--test/files/neg/macro-invalidsig-params-namemismatch.check1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/files/neg/macro-invalidsig-params-namemismatch.check b/test/files/neg/macro-invalidsig-params-namemismatch.check
index f2639d9350..00d781a2ac 100644
--- a/test/files/neg/macro-invalidsig-params-namemismatch.check
+++ b/test/files/neg/macro-invalidsig-params-namemismatch.check
@@ -2,7 +2,6 @@ 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