Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/privateTopLevelVarInFile.before.Main.kt
T
2016-04-24 13:09:37 +03:00

10 lines
169 B
Kotlin
Vendored

// "Make 'prop' internal" "true"
// ACTION: Make 'prop' public
// ERROR: Cannot access 'prop': it is 'private' in file
package test
fun foo() {
<caret>prop = 20
}