Files
kotlin-fork/js/js.translator/testData/box/simple/simpleInitializer.kt
T
2016-09-29 12:00:43 +03:00

13 lines
146 B
Kotlin
Vendored

package foo
class Test() {
var a: Int
init {
a = 3
}
}
fun box(): String {
return if (Test().a == 3) "OK" else "fail"
}