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