aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t8237b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t8237b.scala')
-rw-r--r--tests/pending/pos/t8237b.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/pos/t8237b.scala b/tests/pending/pos/t8237b.scala
deleted file mode 100644
index 52bb310e8..000000000
--- a/tests/pending/pos/t8237b.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.language.higherKinds
-import scala.reflect.runtime.universe._
-object Test {
-
- def fTt[A,E[X]<:List[X]](a: A)(implicit tt: TypeTag[E[A]]) = a
-
- trait TC[A]
- implicit def TCListInt[A]: TC[A] = ???
- fTt(1)
-}