mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
static interface method call: ignore static imports if call is qualified (IDEA-136077)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import java.util.function.Function;
|
||||
import static java.util.function.Function.identity;
|
||||
|
||||
class FunctionExample {
|
||||
public static void main(String [] args) throws Exception {
|
||||
Function f = Function.identity();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user