mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
167 B
Kotlin
Vendored
10 lines
167 B
Kotlin
Vendored
// "Make 'x' public" "true"
|
|
|
|
open class Base(protected open val x: Int)
|
|
|
|
class First(override val x: Int) : Base(x)
|
|
|
|
class Second(f: First) {
|
|
val y = f.<caret>x
|
|
}
|