blob: a0a7314b5437ff443e2b8f04d5ca19f917d8dae8 [file] [log] [blame]
/**
* @version $Revision$
*/
class UseClosureInClosureBug extends GroovyTestCase {
void testBug() {
closure = { println it }
anotherClosure = { closure(it) }
anotherClosure("Hello")
}
}