|
Groovy example source code file (Bytecode7Bug.groovy)
The Groovy Bytecode7Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode7Bug extends GroovyTestCase {
void testDuplicateVariables() {
if (true) {
def a = 123
}
if (true) {
def a = 456
}
}
void testDuplicateVariablesInClosures() {
def coll = [1]
coll.each {
def a = 123
}
coll.each {
def a = 456
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode7Bug.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.