mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
14 lines
296 B
Java
14 lines
296 B
Java
class Test {
|
|
|
|
Runnable r;
|
|
{ r = r::run; }
|
|
Runnable r1;
|
|
{ r1 = () -> r1.run(); }
|
|
|
|
|
|
{
|
|
Runnable r = () -> <error descr="Variable 'r' might not have been initialized">r</error>.run();
|
|
Runnable r1 = <error descr="Variable 'r1' might not have been initialized">r1</error>::run;
|
|
}
|
|
}
|