Files
kotlin-fork/js/js.translator/testData/expression/misc/cases/classWithoutPackage.kt
T
2015-04-07 13:08:51 +03:00

8 lines
83 B
Kotlin
Vendored

class A(var a: Int) {
init {
$a = 3
}
}
fun box() = (A(1).a == 3)