aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/tailcall/t6574.scala
blob: 59f3108ad9324158f135d1868b3741cc75ac39cc (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
  }
}