mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 00:21:28 +00:00
7 lines
280 B
Kotlin
Vendored
7 lines
280 B
Kotlin
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in bar.foo
|
|
// PARAM_DESCRIPTOR: value-parameter b: kotlin.Int defined in bar.foo
|
|
fun bar(n: Int) {
|
|
fun foo(a: Int, b: Int) = <selection>a + b - n</selection> - 1
|
|
} |