Files
kotlin-fork/js/js.translator/testData/box/simple/constructorWithParameter.kt
T
2017-07-19 12:24:09 +03:00

11 lines
173 B
Kotlin
Vendored

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