12 lines
124 B
Plaintext
Vendored
12 lines
124 B
Plaintext
Vendored
class For {
|
|
var xxx: For? = null
|
|
}
|
|
|
|
|
|
fun foo(f: For) {
|
|
val xxx1 = f.xxx
|
|
|
|
if (true) {
|
|
val xxx = 1
|
|
}
|
|
} |