Files
kotlin-fork/idea/testData/resolve/additionalLazyResolve/functionLiteralInBaseConstructor.kt
T
Mikhail Glukhikh 5c4c77a80a Determine enclosing element correctly inside base constructor
So #KT-17680 Fixed
So #KT-18740 Fixed
So EA-76201 Fixed
2017-10-03 11:05:21 +03:00

14 lines
342 B
Kotlin
Vendored

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