summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/resolve/additionalLazyResolve/functionLiteralInBaseConstructor.kt
blob: 3b86d19dae9607c900f507f70a2d9e04f5471d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package test

open class B(val foo: () -> Unit)

class C : B({

})

//package test
//public open class B defined in test
//public constructor B(foo: () -> kotlin.Unit) defined in test.B
//value-parameter foo: () -> kotlin.Unit defined in test.B.<init>
//public final class C : test.B defined in test
//public constructor C() defined in test.C