8 lines
83 B
Kotlin
Vendored
8 lines
83 B
Kotlin
Vendored
class A(var a: Int) {
|
|
init {
|
|
$a = 3
|
|
}
|
|
}
|
|
|
|
fun box() = (A(1).a == 3)
|