summaryrefslogblamecommitdiff
path: root/test/files/run/inliner-infer.scala
blob: 027d25b6e26c04121bdaa3e2b5d69d1e75d79bce (plain) (tree)
1
2
3
4
5
6




                                                       
                         






















                                
/** Test that the inliner is not inferring that `xs' is
 *  always Nil, removing the call to isEmpty.
 */
object Test extends App {

  @annotation.tailrec
  def walk(xs: MyList): Unit = {
    if (xs.isEmpty)
      println("empty")
    else {
      println("non-empty")
      walk(MyNil)
    }
  }

  walk(new MyList)
}

class MyList {
  def isEmpty = false
}

object MyNil extends MyList {
  override def isEmpty = true
}