aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i342.scala
blob: bb57bae8e2315310272f5774b95095c9005e25e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test {
  def test2: Int = {
    var ds: String = null
    def s = {
      ds = "abs"
      ds
    }
    s.length
  }
}