60874f29fe
#KT-17047 Fixed
20 lines
215 B
Plaintext
Vendored
20 lines
215 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
class C {
|
|
fun foo() = "c"
|
|
val bar = "C"
|
|
}
|
|
|
|
class D {
|
|
fun baz() = "d"
|
|
val quux = "D"
|
|
|
|
}
|
|
|
|
val d = D()
|
|
val x = d.apply {
|
|
C().<caret>run {
|
|
baz() + foo() + quux + bar
|
|
}
|
|
}
|