aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala')
-rw-r--r--tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala b/tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala
deleted file mode 100644
index 705defb18..000000000
--- a/tests/pending/run/macro-impl-tparam-only-in-impl/Impls_1.scala
+++ /dev/null
@@ -1,5 +0,0 @@
-import scala.reflect.macros.blackbox.Context
-
-object Impls {
- def foo[U <: String](c: Context): c.Expr[Unit] = { import c.universe._; c.Expr[Unit](q"""println("hello world")""") }
-}