2efbc6e914
#KT-27550 Fixed
12 lines
151 B
Kotlin
Vendored
12 lines
151 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
open class Foo
|
|
|
|
class SubFoo : Foo()
|
|
|
|
val SubFoo.bar: String get() = ""
|
|
|
|
fun SubFoo.func() = Foo().apply {
|
|
<caret>this@func.bar
|
|
}
|