mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
11 lines
122 B
Kotlin
11 lines
122 B
Kotlin
class RedefinePropertyInFunction() {
|
|
|
|
var i = 17
|
|
|
|
fun f(): Int {
|
|
var i = 18
|
|
return i
|
|
}
|
|
|
|
}
|