mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
19 lines
227 B
Kotlin
Vendored
19 lines
227 B
Kotlin
Vendored
class A {
|
|
private val p: Int
|
|
get() = 4
|
|
|
|
companion object B {
|
|
val p: Int
|
|
get() = 6
|
|
}
|
|
|
|
fun a() = p + B.p
|
|
}
|
|
|
|
|
|
fun box(): String {
|
|
if (A().a() != 10) return "Fail"
|
|
|
|
return "OK"
|
|
}
|