There was an error while loading. Please reload this page.
It seems that variables is always used if it is passed to anonymous function
package main func main() { var i int f(func() { i = 0; println("test") }) } func f(m func()) { m() }