Files
kotlin-fork/idea/testData/quickfix/memberVisibilityCanBePrivate/getter.before.Main.kt
T
Mikhail Glukhikh c99db11ace Visibility can be private: do not perform too expensive search
Also, additional test for usage via accessor was added
So #KT-18617 Fixed
2017-06-23 18:15:20 +03:00

8 lines
199 B
Kotlin
Vendored

// "Add 'private' modifier" "false"
// ACTION: Convert to secondary constructor
// ACTION: Create test
// ACTION: Move to class body
class My(val <caret>parameter: Int) {
val other = parameter
}