summaryrefslogblamecommitdiff
path: root/test/files/run/t3038b.scala
blob: 5237ee941e39c493610771097d1ab896f93d2469 (plain) (tree)



















                                 
class A {
    val a1 = 1
    val a2 = 2
    private val b1 = 3
    private val b2 = 4
    @transient val c1 = 5
    @transient val c2 = 6
    def run = {
        a1
        a2
        b1
        b2
        c1
        c2
    }
}

object Test extends Application {
    new A().run
}