mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
194 B
Kotlin
Vendored
10 lines
194 B
Kotlin
Vendored
// "Make 'foo' internal" "true"
|
|
// ACTION: Make 'foo' public
|
|
// ERROR: Cannot access 'foo': it is private in 'First'
|
|
|
|
package test
|
|
|
|
class Second(val f: First) {
|
|
fun bar() = f.<caret>foo()
|
|
}
|