Files

12 lines
139 B
Kotlin
Vendored

// FIR_IDENTICAL
class RedefinePropertyInFunction() {
var i = 17
fun f(): Int {
var i = 18
return i
}
}