Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/suppressLocalInspection/afterSuppressIsAvailableForUnavailableFix.java
Alexey Kudravtsev a2233e727f move test for fix in IJ-CR-4970 away from SuppressLIIJspTest because it has nothing to do with jsp
GitOrigin-RevId: 84111526ca761cc9b4cb468371e4455ef5b0fead
2021-01-07 13:57:00 +00:00

7 lines
144 B
Java

// "Suppress for statement" "true"
class X {
{
//noinspection MyLocalInspectionTool
String s = String.format("foo");
}
}