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

4 lines
76 B
Plaintext
Vendored

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