summaryrefslogblamecommitdiff
path: root/test/files/pos/tcpoly_param_scoping.scala
blob: f8a03f664f89d79e00006a9f2e2674c2a1b7e330 (plain) (tree)
1
2
3
4
5
6
7
8






                        
                                          
trait FOO[B, m[A <: B]]
trait FOO2[A <: B, B]
trait FOO3[m[A <: B], B]

class Test {
  def foo[a[x]] = "a"
}
//trait Idiom[idi[x]] { def foo: idi[Int]}