Files
kotlin/compiler/testData/codegen/box/defaultArguments/function/innerExtentionFunction.kt
2018-06-21 13:27:17 +03:00

15 lines
231 B
Kotlin
Vendored

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