blob: cad9e5dea776e926a4324fca48a0c394520e87ab [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision$
*/
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
}
}
}