Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
shadowing
/
ShadowPropertyInFunction.kt
blob: 9e0f0abf602ec861ada1479c12f3ff9de79e61bb [
file
]
// FIR_IDENTICAL
class
RedefinePropertyInFunction
()
{
var
i
=
17
fun f
():
Int
{
var
i
=
18
return
i
}
}