blob: 9619a30bd2d6dd8e4b3ebc244933668ae3a530a0 [file] [log] [blame]
package groovy.bugs
/**
* @author John Wilson
* @version $Revision$
*/
class TryCatchBug extends GroovyTestCase {
void testBug() {
try {
println("Hello")
}
finally {
println("Finally")
}
}
}