public void testClosureParameterPassingBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/ClosureParameterPassingBug.groovy");
object.invokeMethod("testBug", null);
}
public void testNestedClosureBug() throws Exception {
GroovyObject object = compile("src/test/groovy/bugs/NestedClosure2Bug.groovy");
object.invokeMethod("testFieldBug", null);
}