summaryrefslogtreecommitdiff
path: root/test/files/pos/t2421b.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2010-01-13 15:44:11 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2010-01-13 15:44:11 +0000
commit28c75a82ea610fb5a61e53c0a031c2d64a399af5 (patch)
tree55a6f6aa47b7c51761753b42cda30919666645b0 /test/files/pos/t2421b.scala
parent4f2bcd1af4fc12765aea7975a97357274087d392 (diff)
downloadscala-28c75a82ea610fb5a61e53c0a031c2d64a399af5.tar.gz
scala-28c75a82ea610fb5a61e53c0a031c2d64a399af5.tar.bz2
scala-28c75a82ea610fb5a61e53c0a031c2d64a399af5.zip
closes #2421: more complete fix, now also check...
closes #2421: more complete fix, now also check validity of inferred type arguments for expressions inferred for implicit values review by odersky
Diffstat (limited to 'test/files/pos/t2421b.scala')
-rw-r--r--test/files/pos/t2421b.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/files/pos/t2421b.scala b/test/files/pos/t2421b.scala
new file mode 100644
index 0000000000..0df3461662
--- /dev/null
+++ b/test/files/pos/t2421b.scala
@@ -0,0 +1,19 @@
+object Test {
+ class A
+ class B
+ class C
+ class F[X]
+
+ def f(implicit aa: F[A]) = println(aa)
+
+ implicit def a : F[A] = new F[A]()
+ implicit def b[X <: B] = new F[X]()
+
+ f
+}
+/* bug:
+error: ambiguous implicit values:
+ both method b in object Test1 of type [X <: Test1.B]Test1.F[X]
+ and method a in object Test1 of type => Test1.F[Test1.A]
+ match expected type Test1.F[Test1.A]
+*/