Files
kotlin-fork/idea/testData/intentions/changeVisibility/protected/propertySetterForPrivateProperty.kt
T

5 lines
90 B
Kotlin
Vendored

// IS_APPLICABLE: false
class Test {
private var foo: String = ""
<caret>set
}