11 lines
122 B
Plaintext
11 lines
122 B
Plaintext
class RedefinePropertyInFunction() {
|
|
|
|
var i = 17
|
|
|
|
fun f(): Int {
|
|
var i = 18
|
|
return i
|
|
}
|
|
|
|
}
|