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

10 lines
165 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 = prop
}