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

7 lines
124 B
Kotlin
Vendored

// !DIAGNOSTICS: +UNUSED_LAMBDA_EXPRESSION +UNUSED_VARIABLE
fun f(): Int {
var i = 17
{ var i = 18 }
return i
}