blob: 4eb3bfb09123ff6d8b5205331f0e0a36c79ae283 [file] [log] [blame]
class A {
def foo () {
def x = 2
new Runnable() {
void run() {
x = 4
print x
}
}.run()
}
}