204d9e3423
So #KT-20714 Fixed
12 lines
194 B
Kotlin
Vendored
12 lines
194 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
class Bar(var foo: Int = 1)
|
|
|
|
class Test(var foo: Int = 2) {
|
|
fun test() {
|
|
Bar().apply {
|
|
this.foo = <caret>this@Test.foo
|
|
}
|
|
}
|
|
} |