aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/tailcall/t6574.scala
blob: cd0fdbb8dcd7ba94a6334c7f8b5e4e5566827999 (plain) (tree)
1
2
3
4
5
6
7





                                                                   
                                                            











                                                                           
class Bad[X, Y](val v: Int) extends AnyVal {
  def vv = v
  @annotation.tailrec final def foo[Z](a: Int)(b: String): Unit = {
    this.foo[Z](a)(b)
  }

  @annotation.tailrec final def differentReceiver : Unit = {
    {(); new Bad[X, Y](0)}.differentReceiver
  }

  @annotation.tailrec final def dependent[Z](a: Int)(b: String): b.type = {
    this.dependent[Z](a)(b)
  }
}

class HK[M[_]](val v: Int) extends AnyVal {
  def hk[N[_]]: Unit = if (false) hk[M] else ()
}