Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowVariableInNestedClosureParam.jet
T
2012-01-27 18:32:55 +04:00

5 lines
96 B
Plaintext

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