mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
15 lines
326 B
Java
15 lines
326 B
Java
class BB {
|
|
public boolean isVarArgCall() {
|
|
return false;
|
|
}
|
|
|
|
private static boolean isVarArgCall(String method, String substitutor) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
void f(BB b){
|
|
BB.<error descr="Non-static method 'isVarArgCall()' cannot be referenced from a static context">isVarArgCall</error>();
|
|
}
|
|
} |