Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
shadowing
/
ShadowPropertyInClosure.kt
blob: 29b87b13fe2c70e6850bee61079a8c02a6902bdb [
file
]
// FIR_IDENTICAL
val i
=
17
val f
:
()
->
Int
=
{
var
i
=
17
;
i
}