13 lines
179 B
Kotlin
Vendored
13 lines
179 B
Kotlin
Vendored
object A {
|
|
|
|
@JvmStatic inline fun test(b: String = "OK") : String {
|
|
return b
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
|
|
if (A.test() != "OK") return "fail 1"
|
|
|
|
return "OK"
|
|
} |