summaryrefslogblamecommitdiff
path: root/test/files/pos/init.scala
blob: fdea0e06f04c7c59622cacc64953cb380fafece7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                 
                         


                                   
class Foo {

  var cnt = 0

  class Bar {
    cnt = cnt + 1
    val id = cnt
  }
}

object Test extends App {
  val foo = new Foo
  Console.println((new foo.Bar).id)
}