aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/tailcall/t6574.scala
blob: e81c8cd07766e82d0e0bf327cd85b5993eac8614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class Bad[X, Y](val v: Int) extends AnyVal {
  @annotation.tailrec final def notTailPos[Z](a: Int)(b: String): Unit = {
    this.notTailPos[Z](a)(b)
    println("tail")
  }

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