|
Groovy example source code file (Bytecode3Bug.groovy)
The Groovy Bytecode3Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode3Bug extends GroovyTestCase {
def count
void testIncrementPropertyInclosure() {
def args = [1, 2, 3]
def m = [:]
count = 0
doLoop(args, m)
assert count == 3
}
void doLoop(args, m) {
args.each {
m.put(it, count++)
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode3Bug.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.