Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowParameterInFunctionBody.fir.kt
T

5 lines
50 B
Kotlin
Vendored

fun f(p: Int): Int {
val p = 2
return p
}