mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
206 B
Java
9 lines
206 B
Java
class Test1 {
|
|
{
|
|
Comparable<String> c = o -> {
|
|
if (o == null) return 1;
|
|
return -1;
|
|
<error descr="Unreachable statement">System.out.println("Hello");</error>
|
|
};
|
|
}
|
|
} |