blob: 702f331f83bc9b27ff4e3416fab22aaaed279fe6 [file] [log] [blame]
/**
* @version $Revision$
*/
class Bytecode5Bug extends GroovyTestCase {
void testUsingLocalVar() {
c = 0
getCollection().each { c += it }
assert c == 10
}
getCollection() {
[1, 2, 3, 4]
}
}