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

13 lines
129 B
Kotlin
Vendored

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