mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 15:53:36 +00:00
11 lines
323 B
Kotlin
Vendored
11 lines
323 B
Kotlin
Vendored
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in A.foo
|
|
// PARAM_DESCRIPTOR: value-parameter b: kotlin.Int defined in A.foo
|
|
class A {
|
|
fun foo(a: Int, b: Int): Int {
|
|
return {
|
|
<selection>a + b - 1</selection>
|
|
}.invoke()
|
|
}
|
|
} |