Files
kotlin-fork/idea/testData/intentions/changeVisibility/private/propertySetterForProtectedProperty.kt
T

4 lines
68 B
Kotlin
Vendored

class Test {
protected var foo: String = ""
<caret>set
}