blob: b6722edada9931617a630c1e4524405b87d4368f [file] [log] [blame]
/**
* @author Morgan Hankins
* @version $Revision$
*/
class TryCatch2Bug extends GroovyTestCase {
void testBug() {
try {
}
catch (Throwable t) {
}
}
void testBug2() {
try {
x = 123
}
}
}