Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/moveCatchUp/after1.java
2010-06-25 12:46:40 +04:00

17 lines
307 B
Java

// "Move catch for 'java.io.IOException' before 'java.lang.Exception'" "true"
import java.io.*;
class a {
void f(int i) {
try {
if (i==0) throw new IOException();
} catch (IOException e) {
int ioexcep = 0;
} catch (Exception e) {
int excep = 0;
}<caret>
}
}