Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/ExceptionNeverThrownInTry.java

13 lines
230 B
Java

import java.io.*;
////////////
class x {
void f() {
try {
int i = 0;
}
catch (<error descr="Exception 'java.io.IOException' is never thrown in the corresponding try block">IOException e</error>) {
}
}
}