10 lines
140 B
Kotlin
Vendored
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"
|
|
} |