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

5 lines
137 B
Plaintext
Vendored

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