Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
shadowing
/
ShadowVariableInNestedClosure.fir.kt
blob: 765a19cfae6b6b3446cea416af325cd9ad95b3a4 [
file
]
// DIAGNOSTICS: +UNUSED_LAMBDA_EXPRESSION +UNUSED_VARIABLE
fun f
():
Int
{
var
i
=
17
{
var
i
=
18
}
return
i
}