Files
kotlin-fork/js/js.translator/testData/box/simple/constructorWithParameter.kt
T
2018-09-12 09:49:25 +03:00

11 lines
174 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1282
package foo
class Test(a: Int) {
val b = a
}
fun box(): String {
var test = Test(1)
return if (test.b == 1) "OK" else "fail"
}