aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/tailcall/t6574.scala
blob: 462ef800f43505b12dca632500fa4db2f22d089d (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 = {   // error
    this.notTailPos[Z](a)(b)          // error
    println("tail")
  }

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