From d51d08b444e0ea4a2c13b4daf0ce14b53bfbad89 Mon Sep 17 00:00:00 2001 From: Samuel Gruetter Date: Wed, 19 Mar 2014 17:53:49 +0100 Subject: move all tests in tests/untried/neg which use implicits to tests/untried/neg-with-implicits --- .../neg-with-implicits/t5903b/Macros_1.scala | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/untried/neg-with-implicits/t5903b/Macros_1.scala (limited to 'tests/untried/neg-with-implicits/t5903b/Macros_1.scala') diff --git a/tests/untried/neg-with-implicits/t5903b/Macros_1.scala b/tests/untried/neg-with-implicits/t5903b/Macros_1.scala new file mode 100644 index 000000000..6ce49c022 --- /dev/null +++ b/tests/untried/neg-with-implicits/t5903b/Macros_1.scala @@ -0,0 +1,23 @@ +import scala.reflect.macros.blackbox.Context +import language.experimental.macros + +object Interpolation { + implicit class TestInterpolation(c: StringContext) { + object t { + def unapply[T](x: T): Any = macro Macros.unapplyImpl[T] + } + } +} + +object Macros { + def unapplyImpl[T: c.WeakTypeTag](c: Context)(x: c.Tree) = { + import c.universe._ + q""" + new { + def isEmpty = false + def get = "2" + def unapply(x: String) = this + }.unapply($x) + """ + } +} -- cgit v1.2.3