21 lines
231 B
Plaintext
21 lines
231 B
Plaintext
|
|
|
||
|
|
obj a {
|
||
|
|
var i: int
|
||
|
|
fun other() {
|
||
|
|
i = 1
|
||
|
|
}
|
||
|
|
fun wasthatakey() {
|
||
|
|
fun() {
|
||
|
|
other()
|
||
|
|
/*i = 1*/
|
||
|
|
}()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
fun main():int {
|
||
|
|
var b: a
|
||
|
|
b.wasthatakey()
|
||
|
|
return 0
|
||
|
|
}
|
||
|
|
|