Files
openide/java/java-tests/testData/refactoring/extractMethodAndDuplicatesInplace/DuplicateWithLocalMethodReference.java
Alexandr Suhinin 5371a9a6f6 [extract duplicates] IDEA-278213: don't distinguish references to same local members
GitOrigin-RevId: 4a9f84d48d5fea93696262df333f6964c89cf757
2021-11-12 16:32:43 +00:00

12 lines
218 B
Java

public class DuplicateWithLocalMethodReference {
void example(){}
void test(){
<selection>System.out.println();
example();</selection>
System.out.println();
example();
}
}