summaryrefslogtreecommitdiff
path: root/test/files/run/inliner-infer.scala
blob: e41d6ae5c76177cdf3d8e3d9f4d035716e2a4e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** 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
}