|
Groovy example source code file (BytecodeBug.groovy)
The Groovy BytecodeBug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class BytecodeBug extends GroovyTestCase {
void testTedsBytecodeBug() {
//def a = ['tom','dick','harry']
def a = [1, 2, 3, 4]
doTest(a)
}
void doTest(args) {
def m = [:]
def i = 1
args.each {
talk(it)
m.put(it, i++)
}
assert i == 5
m.each {
println(it)
}
}
def talk(a) {
println("hello "+a)
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy BytecodeBug.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.