summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/resolve/additionalLazyResolve/localObjectInClassInitializer.kt
blob: d23bd349514019779c3d06192f4792c8642a4f83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package test

open class A

class MyClass() {
    init {
        object O: A() {

        }
    }
}

//package test
//public open class A defined in test
//public constructor A() defined in test.A
//public final class MyClass defined in test
//public constructor MyClass() defined in test.MyClass
//local object O : test.A defined in test.MyClass.<init>
//private constructor O() defined in test.MyClass.<init>.O