Files
kotlin-fork/js/js.translator/testData/expression/misc/cases/classWithoutPackage.kt
T
2015-10-09 21:06:26 +03:00

8 lines
82 B
Kotlin
Vendored

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