summaryrefslogtreecommitdiff
path: root/test/files/run/t6443.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6443.scala')
-rw-r--r--test/files/run/t6443.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t6443.scala b/test/files/run/t6443.scala
new file mode 100644
index 0000000000..67fe2cab22
--- /dev/null
+++ b/test/files/run/t6443.scala
@@ -0,0 +1,15 @@
+class Base
+class Derived extends Base
+
+trait A {
+ def foo(d: String)(d2: d.type): Base
+ val s = ""
+ def bar: Unit = foo(s)(s)
+}
+object B extends A {
+ def foo(d: String)(d2: d.type): D forSome { type D <: S; type S <: Derived } = {d2.isEmpty; null} // Bridge method required here!
+}
+
+object Test extends App {
+ B.bar
+}