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

9 lines
145 B
Kotlin
Vendored

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