summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-09-23 04:54:11 -0700
committerJason Zaugg <jzaugg@gmail.com>2013-09-23 04:54:11 -0700
commita456f4648a82e22b9fa66f05835c01173c16c7c8 (patch)
treef418e9b8d4985ae26f9d663f2d7b05c3147dea17 /test/files/neg
parentc96f135f32ffc79bc4bd7ece92aa2f18f2efe99e (diff)
parentc8a9329ff9b2a6ea99eef7234c9f84c0bfe0166b (diff)
downloadscala-a456f4648a82e22b9fa66f05835c01173c16c7c8.tar.gz
scala-a456f4648a82e22b9fa66f05835c01173c16c7c8.tar.bz2
scala-a456f4648a82e22b9fa66f05835c01173c16c7c8.zip
Merge pull request #2962 from densh/topic/syntactic-assign
Quasiquotes: add syntactic extractor for assignment-like trees
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/macro-quasiquotes.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/macro-quasiquotes.check b/test/files/neg/macro-quasiquotes.check
index a2d48723b5..96ef75dd32 100644
--- a/test/files/neg/macro-quasiquotes.check
+++ b/test/files/neg/macro-quasiquotes.check
@@ -1,6 +1,6 @@
Macros_1.scala:14: error: macro implementation has wrong shape:
required: (x: Impls.this.c.Expr[Int]): Impls.this.c.Expr[Any]
- found : (x: Impls.this.c.universe.Block): Impls.this.c.universe.Apply
+ found : (x: Impls.this.c.universe.Block): Impls.this.c.universe.Tree
type mismatch for parameter x: Impls.this.c.Expr[Int] does not conform to Impls.this.c.universe.Block
def m3(x: Int) = macro Impls.impl3
^