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