Files
kotlin-fork/idea/testData/quickfix/privateInFiles/privateTopLevelVarWithSetterInFile.before.Main.kt
T
2015-10-01 14:57:26 +03:00

9 lines
154 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
}