12 lines
178 B
Kotlin
Vendored
12 lines
178 B
Kotlin
Vendored
class My {
|
|
val x: Int
|
|
init {
|
|
var y: Int? = null
|
|
if (y != null) {
|
|
x = y.hashCode()
|
|
}
|
|
else {
|
|
x = 0
|
|
}
|
|
}
|
|
} |