mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
IDEA-90882 (do not pre-select extension methods for implementation)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class Test {
|
||||
interface A<T> {
|
||||
void m1(T t);
|
||||
void m2();
|
||||
}
|
||||
|
||||
interface B<T> extends A<T> {
|
||||
void m1(T t) default { }
|
||||
}
|
||||
|
||||
class MyClass<T> implements B<T> {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user