summaryrefslogblamecommitdiff
path: root/test/files/run/t3509.scala
blob: 7ec150eb01a1b38d4874427a2208870a7290a63c (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
  }
}