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