9 lines
133 B
Kotlin
Vendored
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()
|
|
}
|