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

7 lines
143 B
Kotlin
Vendored

fun ff(): Int {
var i = 1
<!UNUSED_LAMBDA_EXPRESSION!>{
val <!NAME_SHADOWING, UNUSED_VARIABLE!>i<!> = 2
}<!>
return i
}