summaryrefslogtreecommitdiff
path: root/test/files/pos/tcpoly_late_method_params.scala
blob: 2af06646184d9d1c94b70d08dc10a01ca19f207d (plain) (blame)
1
2
3
4
5
trait Foo {
  def flatMap[RT <: RBound[RT], RBound[_], Result[x <: RBound[x]]]: Result[RT]
// bounds for RT& = >: scala.this.Nothing <: RBound&[RT&]
                                   // bounds for x = >: scala.this.Nothing <: RBound&[x]
}