9 lines
154 B
Kotlin
9 lines
154 B
Kotlin
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test{
|
|
fun get(a: Int=1, b: Int=2) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test.g<caret>et(b=3)
|
|
}
|