summaryrefslogtreecommitdiff
path: root/test/files/run/t3509.scala
blob: 76f8d6016e5d25a5554a67b6daba2132097cfdfe (plain) (blame)
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
  }
}