mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
18 lines
295 B
Kotlin
Vendored
18 lines
295 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
class A {
|
|
companion object {
|
|
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()
|
|
} |