blob: 107d9824ed5b1629f546b225ac66db043c66b96c [file] [log] [blame]
package groovy.bugs
/**
* @version $Revision$
*/
class CastWhenUsingClosuresBug extends GroovyTestCase {
void testBug() {
def a = 1
def list = [1]
list.each { a = it }
}
}