blob: 3f688a14aeb9f3f5926a66e63c424268405aabcc [file] [log] [blame]
def foo(int x) {
[1, 2, 3] .each {
print x
x+=1
}
[1, 2, 3] .each {
print x
x++
}
print x
}