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