mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
7 lines
113 B
Kotlin
Vendored
7 lines
113 B
Kotlin
Vendored
// "Make 'x' internal" "true"
|
|
class First(private val x: Int)
|
|
|
|
class Second(f: First) {
|
|
val y = f.<caret>x
|
|
}
|