aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/t963b.scala
blob: f3927cb09fd6cf92ef76458355f1abca28a0dac9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                    
            












                                               
// Soundness bug, at #963 and dup at #2079.
trait A {
  type T
  var v : T
}

object B {
  def f(x : { val y : A }): Unit = { x.y.v = x.y.v }

  var a : A = _
  var b : Boolean = false
  def y : A = {
    if (b) {
      a = new A { type T = Int; var v = 1 }
      a
    } else {
      a = new A { type T = String; var v = "" }
      b = true
      a
    }
  }
}

object Test extends App {
  B.f(B)
}