mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
15 lines
230 B
Kotlin
Vendored
15 lines
230 B
Kotlin
Vendored
object A {
|
|
fun Int.foo(a: Int = 1): Int {
|
|
return a
|
|
}
|
|
|
|
fun test(): String {
|
|
if (1.foo() != 1) return "fail"
|
|
if (1.foo(2) != 2) return "fail"
|
|
return "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.test()
|
|
} |