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

9 lines
133 B
Kotlin
Vendored

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