a4f805ccd0
Relates to #KT-34113 Relates to #KT-32965 Relates to #KT-33991 Relates to #KT-33597
12 lines
174 B
Kotlin
Vendored
12 lines
174 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
open class A(init: A.() -> Unit) {
|
|
val prop: String = ""
|
|
}
|
|
|
|
object B : A({})
|
|
|
|
object C : A({
|
|
fun foo() = <caret>B.prop.toString()
|
|
})
|