mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
12 lines
218 B
Java
12 lines
218 B
Java
public class DuplicateWithLocalMethodReference {
|
|
|
|
void example(){}
|
|
|
|
void test(){
|
|
<selection>System.out.println();
|
|
example();</selection>
|
|
|
|
System.out.println();
|
|
example();
|
|
}
|
|
} |