mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
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"
|
|
} |