Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppress15Inspections/after4.java
Anna.Kozlova 399e59e8dd fix testdata
2016-04-21 14:33:04 +02:00

7 lines
143 B
Java

// "Suppress for statement" "true"
public class Test {
public void run() {
//noinspection id
@SuppressWarnings("unused") int i;
}
}