summaryrefslogtreecommitdiff
path: root/test/files/pos/t2444.scala
blob: fac1e95d0f6a1a32a8b8299a3a54f59b49ecbce0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
object Test {

  trait Foo

  class Bar {
    object baz extends Foo
  }

  def frob[P1, P2<:Foo](f:P1 => P2) = ()

  def main(args:Array[String]) : Unit = {
	frob((p:Bar) => p.baz)
  }

}