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

4 lines
93 B
Plaintext

fun f(<!UNUSED_PARAMETER!>p<!>: Int): Int {
val <!NAME_SHADOWING!>p<!> = 2
return p
}