Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/beforeUsedInJavadoc.java

18 lines
300 B
Java

// "Fix all 'Field can be local' problems in file" "false"
class TestFieldConversion
{
private static int som<caret>eInt = 0;
public TestFieldConversion()
{
int usingThatInt = someInt;
}
/**
* Referencing that value here {@value #someInt}
*/
public void someMethod() {
}
}