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