Files
kotlin-fork/idea/testData/inspectionsLocal/usePropertyAccessSyntax/set.kt
T
2019-04-22 16:19:37 +07:00

5 lines
146 B
Kotlin
Vendored

// PROBLEM: "Use of setter method instead of property access syntax"
// WITH_RUNTIME
fun foo(thread: Thread) {
thread.setName<caret>("name")
}