3d8d92c7d3
- test data files renamed from *.jet to *.kt
11 lines
122 B
Kotlin
11 lines
122 B
Kotlin
class RedefinePropertyInFunction() {
|
|
|
|
var i = 17
|
|
|
|
fun f(): Int {
|
|
var i = 18
|
|
return i
|
|
}
|
|
|
|
}
|