aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t3509.scala
blob: 8e1986f34f4e72a77dd72783f2b6c3ebd9ad7e82 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                           
object Test {

  class Foo(final var i:Int)

  def main(args : Array[String]) : Unit = {
  	val foo = new Foo(0)
  	foo.i += 1
  }
}