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, 16 insertions, 0 deletions
diff --git a/test/pending/pos/bug2023.scala b/test/pending/pos/bug2023.scala
new file mode 100644
index 0000000000..22ae76bdd7
--- /dev/null
+++ b/test/pending/pos/bug2023.scala
@@ -0,0 +1,16 @@
+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')
+ }
+} \ No newline at end of file