Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/renameWrongReference/beforeResolvedWithInvalidAccessField.java
2014-12-06 11:38:01 +03:00

10 lines
141 B
Java

// "Rename reference" "true"
class FooInterface {
private int myInt;
}
class Foo {
void buzz() {
myI<caret>nt + myInt;
}
}