mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
20 lines
630 B
Java
20 lines
630 B
Java
import java.util.function.Function;
|
|
|
|
class Main {
|
|
public static void main(String[] args) {
|
|
Test test = new Test();
|
|
((Function<String, Long>)(args.length == 2 ? (<error descr="Method reference expression is not expected here">test::foo</error>) : <error descr="Method reference expression is not expected here">test::bar</error>)).apply("");
|
|
|
|
String s = ((<warning descr="Casting '(test != null)' to 'boolean' is redundant">boolean</warning>) (test != null)) ? "a" : "b";
|
|
}
|
|
|
|
static class Test {
|
|
public long foo(String s) {
|
|
return 0;
|
|
}
|
|
|
|
public long bar(String s) {
|
|
return 0;
|
|
}
|
|
}
|
|
} |