From c4bdc3535c5308a5bfba9ccd268ca7f4dd85b15d Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Tue, 3 Dec 2019 17:09:29 +0100 Subject: [PATCH] Remove println that print on `testCompilation` output Was probably there for debug at some point --- tests/run-macros/quote-matcher-power/Macro_1.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/run-macros/quote-matcher-power/Macro_1.scala b/tests/run-macros/quote-matcher-power/Macro_1.scala index faae2e929b1b..e89ce3fc46f6 100644 --- a/tests/run-macros/quote-matcher-power/Macro_1.scala +++ b/tests/run-macros/quote-matcher-power/Macro_1.scala @@ -29,7 +29,6 @@ object Macros { case '{ power2(power2($a, $x), $y)} => '{ power2($a, $x * $y ) } case _ => expr } - println(res.show) res } }