4717e99ac2
(cherry picked from commit f8e80249e9f986ae58a52a57173d2cb0b68a653b)
6 lines
69 B
Kotlin
6 lines
69 B
Kotlin
class A(a:Int) {
|
|
var i:Int = 0
|
|
init {
|
|
if (a == 0) i = 1
|
|
}
|
|
} |