blob: b1acc77c3080f30df1c013d98f50d0705d91f947 [file] [log] [blame]
class Groovy325_Bug extends GroovyTestCase {
static boolean staticMethod() {
return true
}
void testCallStaticMethodFromClosure() {
def c = { staticMethod() }
assert c()
}
}