summaryrefslogtreecommitdiff
path: root/test/files/run/t6135.scala
blob: c0f8f3fd1d985ffe203cdcad98d8be35782711ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
object Test extends App {
  class A { class V }

  abstract class B[S] {
    def foo(t: S, a: A)(v: a.V)
  }

  val b1 = new B[String] {
    def foo(t: String, a: A)(v: a.V) = () // Bridge method required here!
  }

  b1.foo("", null)(null)
}