blob: cc0aa9f083c578d4943a89139589cab17de5f170 [file] [log] [blame]
/**
* @version $Revision$
*/
class NestedClosureBug extends GroovyTestCase {
void testBug() {
a = 123
getValues().each {
println it
it.each {
assert a == 123
}
}
}
getValues() {
[5, 6, 7]
}
}