aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala')
-rw-r--r--tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala b/tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala
deleted file mode 100644
index 95aaa1c3d..000000000
--- a/tests/pending/run/macro-expand-tparams-bounds/Impls_1.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-import scala.reflect.macros.blackbox.Context
-
-object Impls1 {
- def foo[U <: String](c: Context): c.Expr[Unit] = { import c.universe._; c.Expr[Unit](q"""println("hello")""") }
-}
-
-class C
-class D extends C
-
-object Impls2 {
- def foo[U <: C](c: Context): c.Expr[Unit] = { import c.universe._; c.Expr[Unit](q"""println("hello")""") }
-}