864f99782e
#KT-30910 Fixed
5 lines
146 B
Kotlin
Vendored
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")
|
|
} |