Files
kotlin-fork/idea/testData/quickfix/changeSignature/removeUnusedParameterOfPropertySetter.kt
T
Dmitry Gridin 6c439ae85a Create TrailingCommaIntention
#KT-34744
2020-02-04 21:34:53 +07:00

8 lines
221 B
Kotlin
Vendored

// "Remove parameter 'value'" "false"
// ACTION: Enable a trailing comma by default in the formatter
// ACTION: Specify type explicitly
class Abacaba {
var foo: String
get() = ""
set(<caret>value) {}
}