aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/contextbounds-implicits-new.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/contextbounds-implicits-new.scala')
-rw-r--r--tests/pending/pos/contextbounds-implicits-new.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/pending/pos/contextbounds-implicits-new.scala b/tests/pending/pos/contextbounds-implicits-new.scala
deleted file mode 100644
index 8389d1332..000000000
--- a/tests/pending/pos/contextbounds-implicits-new.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-import scala.reflect.runtime.universe._
-
-/* Tests implicit parameters in the presence of context bounds.
- * See Section 7.4 of the Scala Language Specification.
- */
-class C {
-
- def f[T: TypeTag, S: TypeTag](x: T, y: S)(implicit p: C): Unit = { }
-
-}