Files
kotlin/idea/testData/quickfix/increaseVisibility/privateTopLevelVarWithSetterInFile.after.kt
2016-04-24 13:09:37 +03:00

10 lines
183 B
Kotlin
Vendored

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