mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 07:55:31 +07:00
GitOrigin-RevId: 4a9f84d48d5fea93696262df333f6964c89cf757
15 lines
226 B
Java
15 lines
226 B
Java
public class DuplicateWithLocalMethodReference {
|
|
|
|
void example(){}
|
|
|
|
void test(){
|
|
extracted();
|
|
|
|
extracted();
|
|
}
|
|
|
|
private void extracted() {
|
|
System.out.println();
|
|
example();
|
|
}
|
|
} |