12 lines
136 B
Kotlin
Vendored
12 lines
136 B
Kotlin
Vendored
class For {
|
|
var xxx: For? = null
|
|
}
|
|
|
|
|
|
fun foo(f: For) {
|
|
<selection>f.xxx</selection>
|
|
|
|
if (true) {
|
|
val xxx = 1
|
|
}
|
|
} |