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

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
}
}
}