|
Groovy example source code file (Bytecode5Bug.groovy)
The Groovy Bytecode5Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode5Bug extends GroovyTestCase {
void testUsingLocalVar() {
def c = 0
getCollection().each { c += it }
assert c == 10
}
def getCollection() {
[1, 2, 3, 4]
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode5Bug.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.