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