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