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

13 lines
128 B
Kotlin
Vendored

package foo
class Test() {
var a: Int
init {
a = 3
}
}
fun box(): Boolean {
return (Test().a == 3);
}