Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowParameterInFunctionBody.fir.kt
T
2021-03-30 09:57:56 +03:00

6 lines
85 B
Kotlin
Vendored

// !DIAGNOSTICS: +UNUSED_PARAMETER
fun f(p: Int): Int {
val p = 2
return p
}