summaryrefslogtreecommitdiff
path: root/test/files/pos/tcpoly_param_scoping.scala
blob: 1019fdfaf2a25c5dd98b39d8560c11fe2b0f9b67 (plain) (blame)
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]}