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

14 lines
182 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
class Test {
var foo = 1
get() {
println()
return 2
}
fun test() {
foo = <caret>foo
}
}