summaryrefslogtreecommitdiff
path: root/test/files/neg/t8146-non-finitary.check
blob: 8363b750caf301283ed5caa037313a03704be778 (plain) (blame)
1
2
3
4
5
6
7
8
9
t8146-non-finitary.scala:4: error: class graph is not finitary because type parameter A is expansively recursive
trait C[A] extends N[N[C[C[A]]]]
        ^
t8146-non-finitary.scala:6: error: type mismatch;
 found   : C[Int]
 required: N[C[Int]]
  def foo(c: C[Int]): N[C[Int]] = c
                                  ^
two errors found