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

11 lines
135 B
Java

// "Suppress for statement" "true"
class a {
/**
* @deprecated
*/
int b;
private void aa(){
//noinspection deprecation
b++;
}
}