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