Files
kotlin/compiler/testData/codegen/box/defaultArguments/function/extentionFunctionInClassObject.kt
2018-06-09 19:15:38 +03:00

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()
}