9 lines
165 B
Kotlin
Vendored
9 lines
165 B
Kotlin
Vendored
// "Make foo internal" "true"
|
|
// ERROR: Cannot access 'foo': it is 'private' in 'First'
|
|
|
|
package test
|
|
|
|
class Second(val f: First) {
|
|
fun bar() = f.<caret>foo()
|
|
}
|