4 lines
173 B
Kotlin
4 lines
173 B
Kotlin
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter val a: kotlin.Int defined in foo
|
|
val n = 1
|
|
fun foo(a: Int, b: Int = <selection>a + n</selection>) = a + b - 1 |