blob: 529b9e3c97afcff090563b9da190bb78cbb611b9 [file] [log] [blame]
/**
* @version $Revision$
*/
class Bytecode7Bug extends GroovyTestCase {
void testDuplicateVariables() {
if (true) {
a = 123
}
if (true) {
a = 456
}
}
void testDuplicateVariablesInClosures() {
coll = [1]
coll.each {
a = 123
}
coll.each {
a = 456
}
}
}