summaryrefslogtreecommitdiff
path: root/test/files/pos/t1569.scala
blob: e5f9553268ff98afb5c8e41b54f1c720d0d4647d (plain) (blame)
1
2
3
4
5
object Bug {
  class C { type T }
  def foo(x: Int)(y: C)(z: y.T) {}
  foo(3)(new C { type T = String })("hello")
}