Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowPropertyInFunction.kt
T

12 lines
139 B
Kotlin
Vendored

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