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