summaryrefslogblamecommitdiff
path: root/test/files/pos/t2018.scala
blob: 1736c394c9c77a82bbb396086e4c0aaecc7d6044 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                                      
class A {
  val b = new B

  def getChildren = List(new A).iterator

  class B {
    private def check = true

    private def getAncestor(p: A): A = {
      val c = (p.getChildren.find(_.b.check)) match {case Some(d) => d case None => p}

      if (c == p) p else c.b.getAncestor(c)
    }
  }
}