7 lines
85 B
Kotlin
Vendored
7 lines
85 B
Kotlin
Vendored
class My {
|
|
init {
|
|
var y: Int?
|
|
y = 42
|
|
y.hashCode()
|
|
}
|
|
} |