Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
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
}
}