summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/resolve/additionalLazyResolve/localClassInClassInitializer.kt
blob: 4134efccd11cbfca0537696aa717625e3ba0ac8c (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 {
        class B: 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 final class B : test.A defined in test.MyClass.<init>
//public constructor B() defined in test.MyClass.<init>.B