Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowVariableInNestedClosure.kt
T
2015-03-18 16:06:44 +03:00

5 lines
131 B
Kotlin
Vendored

fun f(): Int {
var i = 17
<!UNUSED_FUNCTION_LITERAL!>{ var <!NAME_SHADOWING, UNUSED_VARIABLE!>i<!> = 18 }<!>
return i
}