mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
8 lines
122 B
Kotlin
8 lines
122 B
Kotlin
class A() {
|
|
class object {
|
|
val value = 10
|
|
}
|
|
}
|
|
|
|
fun box() = if (A.value == 10) "OK" else "Fail ${A.value}"
|