summaryrefslogtreecommitdiff
path: root/test/files/neg/t4044.scala
blob: aedffbb96d3c71a97b3d351ea6e58b93f22083e8 (plain) (blame)
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 :: * -> * -> *)
}