blob: 3c242006e6c98714938d982e9641280579be9ef5 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 8000484
* @summary Bad error recovery when 'catch' without 'try' is found
* @compile/fail/ref=T8000484.out -XDrawDiagnostics T8000484.java
*/
public class T8000484 {
void m() {
catch (Exception e){}
else{}
finally{}
catch (Exception e) {catch (Exception e){}}
else{else{}}
finally{finally{}}
}
}