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

6 lines
95 B
Kotlin
Vendored

fun ff(): Int {
var i = 1
<!UNUSED_FUNCTION_LITERAL!>{ i: Int -> i }<!>
return i
}