4cd7193047
#KT-11018 Fixed
11 lines
336 B
Kotlin
Vendored
11 lines
336 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()
|
|
}.invoke()
|
|
}
|
|
} |