blob: 8382640bac4a8abcc7638d26703ccaa8f9b17ac4 [file] [log] [blame]
/**
* @author Robert Kuzelj
* @version $Revision$
*/
class StaticClosurePropertyBug extends GroovyTestCase {
static def out = {System.out.println(it)}
void testCallStaticClosure() {
callStaticClosure()
}
static def callStaticClosure() {
out("TEST")
}
}