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

13 lines
219 B
Kotlin
Vendored

// PROBLEM: Variable 'foo' is assigned to itself
// WITH_RUNTIME
// FIX: Remove self assignment
class Test {
var foo = 1
fun test() {
with (Test()) {
this.foo = <caret>foo
}
}
}