aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6447.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6447.scala')
-rw-r--r--tests/pending/pos/t6447.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/pending/pos/t6447.scala b/tests/pending/pos/t6447.scala
deleted file mode 100644
index 6ef69d485..000000000
--- a/tests/pending/pos/t6447.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.language.experimental.macros
-import scala.reflect.macros.blackbox.Context
-
-class X { type T }
-
-object X {
- // this works
- def foo(x: X): x.T = macro fooImpl
- def fooImpl(c: Context)(x: c.Expr[X]): c.Expr[x.value.T] = ???
-
- // this doesn't
- def bar(x: X, y: X): (x.T, y.T) = macro barImpl
- def barImpl(c: Context)(x: c.Expr[X], y: c.Expr[X]): c.Expr[(x.value.T, y.value.T)] = ???
-
- // neither does this
- def baz(x: X)(xs: List[x.T]): Unit = macro bazImpl
- def bazImpl(c: Context)(x: c.Expr[X])(xs: c.Expr[List[x.value.T]]): c.Expr[Unit] = ???
-}