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

10 lines
140 B
Kotlin
Vendored

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