summaryrefslogtreecommitdiff
path: root/test/pending/pos/init.scala
blob: c51446c804cede2b5bbccee97751edd216a5fd30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Foo {

  var cnt = 0

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

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