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