mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
static methods in interfaces can't be hidden in subclasses (IDEA-124921)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
interface StaticBase<T> {
|
||||
static <T> void foo(T t) {}
|
||||
}
|
||||
|
||||
class Foo implements StaticBase<Number> {
|
||||
static <T> void foo(T t){}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user