mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
11 lines
232 B
Java
11 lines
232 B
Java
class ChangeSignatureTest {
|
|
private static void level1() {
|
|
Runnable runnable = () -> level2();
|
|
Runnable runnable1 = () -> { level2();};
|
|
level2();
|
|
}
|
|
|
|
private static void le<caret>vel2() {
|
|
|
|
}
|
|
} |