Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/privateTopLevelVarWithSetterInFile.before.Main.kt
T

9 lines
152 B
Kotlin
Vendored

// "Make <set-prop> internal" "true"
// ERROR: Cannot assign to 'prop': the setter is private in file
package test
fun foo() {
<caret>prop = 20
}