Files
kotlin-fork/idea/testData/quickfix/memberVisibilityCanBePrivate/protected.kt.after
T
2017-05-26 13:29:01 +02:00

8 lines
107 B
Plaintext
Vendored

// "Add 'private' modifier" "true"
open class A {
private val a = ""
fun foo() {
a
}
}