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

9 lines
262 B
Kotlin
Vendored

// "Add 'private' modifier" "false"
// ACTION: Convert to secondary constructor
// ACTION: Create test
// ACTION: Enable a trailing comma by default in the formatter
// ACTION: Move to class body
class My(val <caret>parameter: Int) {
val other = parameter
}