mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
6 lines
131 B
Kotlin
Vendored
6 lines
131 B
Kotlin
Vendored
class My(val x: Int) {
|
|
val y: Int = x + 3
|
|
val z: Int? = foo()
|
|
|
|
fun foo() = if (x >= 0) x else if (y >= 0) y else null
|
|
} |