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