aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/t4044.scala
blob: eeb1d11ac968fd90e8fc2911fcc7af4f6306d2f2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                   
object Test {
  def M[N[O[_]]] = ()
  type A[_] = Any
  type B[_[_]] = Any
  type C[_[_[_]]] = Any

  M[Any] // okay, Any is kind overloaded.

  M[AnyRef] // error, (AnyRef :: *) not kind-conformant to (N :: * -> * -> *)

  M[A] // error, (A :: (* -> *) not kind-conformant to (N :: * -> * -> *)

  M[B] // okay, (B :: (* -> * -> *) is kind-conformant to (N :: * -> * -> *)

  M[C] // error, (C :: (* -> * -> * -> *) not kind-conformant to (N :: * -> * -> *)
}