summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug2023.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/bug2023.scala')
-rw-r--r--test/pending/pos/bug2023.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/pending/pos/bug2023.scala b/test/pending/pos/bug2023.scala
deleted file mode 100644
index 21c6fc96a6..0000000000
--- a/test/pending/pos/bug2023.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-trait C[A]
-
-object C {
- implicit def ipl[A](implicit from: A => Ordered[A]): C[A] = null
-}
-
-object P {
- def foo[A](i: A, j: A)(implicit c: C[A]): Unit = ()
-}
-
-class ImplicitChainTest {
- def testTrivial: Unit = {
- P.foo('0', '9')
- P.foo('0', '9')
- }
-}