aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala')
-rw-r--r--tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala b/tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala
deleted file mode 100644
index 289f07162..000000000
--- a/tests/pending/run/macro-expand-tparams-prefix/Impls_1.scala
+++ /dev/null
@@ -1,39 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.reflect.macros.blackbox.Context
-
-object Impls1 {
- def foo[U: c.WeakTypeTag](c: Context)(x: c.Expr[U]) = {
- import c.universe._
- val U = implicitly[c.WeakTypeTag[U]]
- c.Expr[Unit](q"println(${U.toString})")
- }
-}
-
-object Impls2 {
- def foo[T: c.WeakTypeTag, U: c.WeakTypeTag](c: Context)(x: c.Expr[U]) = {
- import c.universe._
- val T = implicitly[c.WeakTypeTag[T]]
- val U = implicitly[c.WeakTypeTag[U]]
- val body = Apply(Select(Ident(definitions.PredefModule), TermName("println")), List(Literal(Constant(T.toString + " " + U.toString))))
- c.Expr[Unit](q"""println(${T.toString} + " " + ${U.toString})""")
- }
-}
-
-object Impls345 {
- def foo[T, U: c.WeakTypeTag, V](c: Context)(implicit T: c.WeakTypeTag[T], V: c.WeakTypeTag[V]): c.Expr[Unit] = {
- import c.universe._
- c.Expr(q"""
- println(${T.toString})
- println(${implicitly[c.WeakTypeTag[U]].toString})
- println(${V.toString})
- """)
- }
-}
-
-object Macros4 {
- class D[T] {
- class C[U] {
- def foo[V] = macro Impls345.foo[T, U, V]
- }
- }
-}