Files
kotlin-fork/idea/testData/inspectionsLocal/selfAssignment/differentThese.kt
T
2017-11-02 11:07:52 +03:00

12 lines
189 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
class Test {
var foo = 1
fun test() {
with (Test()) {
this@Test.foo = <caret>this.foo // Different receivers
}
}
}