summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-invalidsig-implicit-params.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-09-11 00:33:04 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-09-11 00:33:04 -0700
commit3707b09aa405150b5064fb2490dbd2632923ed16 (patch)
tree4f28e4242a6d941e672951386d38c49517face65 /test/files/neg/macro-invalidsig-implicit-params.check
parent6c78a2800c2cd8fe709a290c3575e578ceb35eb0 (diff)
parentbc9630e8265c00f1c6ed04e39f58e63b565e4934 (diff)
downloadscala-3707b09aa405150b5064fb2490dbd2632923ed16.tar.gz
scala-3707b09aa405150b5064fb2490dbd2632923ed16.tar.bz2
scala-3707b09aa405150b5064fb2490dbd2632923ed16.zip
Merge pull request #2930 from retronym/topic/patmat-inference-prep
Topic/patmat inference prep
Diffstat (limited to 'test/files/neg/macro-invalidsig-implicit-params.check')
-rw-r--r--test/files/neg/macro-invalidsig-implicit-params.check7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/files/neg/macro-invalidsig-implicit-params.check b/test/files/neg/macro-invalidsig-implicit-params.check
deleted file mode 100644
index f210eb8a32..0000000000
--- a/test/files/neg/macro-invalidsig-implicit-params.check
+++ /dev/null
@@ -1,7 +0,0 @@
-Impls_Macros_1.scala:18: error: macro implementation has wrong shape:
- required: (c: scala.reflect.macros.Context)(x: c.Expr[Int]): c.Expr[Unit]
- found : (c: scala.reflect.macros.Context)(implicit x: c.Expr[Int]): c.Expr[Unit]
-macro implementations cannot have implicit parameters other than WeakTypeTag evidences
- def foo_targs[U](x: Int) = macro Impls.foo_targs[T, U]
- ^
-one error found