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

11 lines
122 B
Plaintext

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