blob: f02cfd3883f63406e8f577ee271ad32418a6dbe5 [file] [log] [blame]
/**
* @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
}
}
}