8 lines
92 B
Kotlin
8 lines
92 B
Kotlin
trait A {
|
|
public val c: Int
|
|
}
|
|
|
|
trait B: A {
|
|
override protected private val c: Int
|
|
}
|