9 lines
162 B
Kotlin
9 lines
162 B
Kotlin
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test{
|
|
fun plus(vararg b: Int, c: Int = 0): Int = 0
|
|
}
|
|
val test = Test()
|
|
test.plus<caret>(c=5)
|
|
}
|