Files
kotlin/idea/testData/quickfix/increaseVisibility/privateTopLevelValInFile.before.Main.kt

10 lines
170 B
Kotlin
Vendored

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