DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-4 / test / files / run / t3509.scala
123456789
object Test { class Foo(final var i:Int) def main(args : Array[String]) : Unit = { val foo = new Foo(0) foo.i += 1 } }