mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
10 lines
212 B
Kotlin
Vendored
10 lines
212 B
Kotlin
Vendored
// PARAM_DESCRIPTOR: value-parameter n: kotlin.Int defined in E.A.foo
|
|
// PARAM_TYPES: kotlin.Int
|
|
enum class E {
|
|
// SIBLING:
|
|
A {
|
|
fun foo(n: Int) = <selection>n + 1</selection>
|
|
},
|
|
B,
|
|
C
|
|
} |