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

7 lines
123 B
Java

// "Suppress for statement" "true"
class a {
public void run() {
//noinspection UnusedDeclaration
int <caret>i = 0;
}
}