summaryrefslogtreecommitdiff
path: root/test/files/neg/macro-blackbox-fundep-materialization
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2013-12-07 11:41:29 +0100
committerEugene Burmako <xeno.by@gmail.com>2013-12-30 19:06:29 +0300
commit9737b808c12821162e2a5888b17175a396037f50 (patch)
tree99136c43abb128bec5d82e8d782867f701a52db3 /test/files/neg/macro-blackbox-fundep-materialization
parentfbbe7cc1773fad2b261f65b1381f94532d252f6f (diff)
downloadscala-9737b808c12821162e2a5888b17175a396037f50.tar.gz
scala-9737b808c12821162e2a5888b17175a396037f50.tar.bz2
scala-9737b808c12821162e2a5888b17175a396037f50.zip
macroExpandApply => macroExpand
Back then, when we needed separate macro expanders for both applications and unapplications, it made sense to have two different methods that do macro expansions. However, after @paulp’s upgrade of the pattern matching engine, we no longer need a dedicated expander for unapply, so I’m removing it and renaming `macroExpandApply` to just `macroExpand`.
Diffstat (limited to 'test/files/neg/macro-blackbox-fundep-materialization')
-rw-r--r--test/files/neg/macro-blackbox-fundep-materialization/Test_2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/macro-blackbox-fundep-materialization/Test_2.scala b/test/files/neg/macro-blackbox-fundep-materialization/Test_2.scala
index a00f4ed7db..40ca1d549c 100644
--- a/test/files/neg/macro-blackbox-fundep-materialization/Test_2.scala
+++ b/test/files/neg/macro-blackbox-fundep-materialization/Test_2.scala
@@ -1,4 +1,4 @@
-// see the comments for macroExpandApply.onDelayed for an explanation of what's tested here
+// see the comments for macroExpand.onDelayed for an explanation of what's tested here
object Test extends App {
case class Foo(i: Int, s: String, b: Boolean)
def foo[C, L](c: C)(implicit iso: Iso[C, L]): L = iso.to(c)