mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
15 lines
208 B
Kotlin
15 lines
208 B
Kotlin
package test
|
|
|
|
trait A {
|
|
internal open fun f() : Int = 0
|
|
internal open val v : Int
|
|
get() = 0
|
|
public var p : Int
|
|
get() = 5
|
|
internal set(value) {
|
|
}
|
|
}
|
|
|
|
class B : A {
|
|
}
|