mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-112562 Pull up should allow to pull method body into interface as default method
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
interface Bar<T> { }
|
||||
|
||||
interface Base<T> {
|
||||
default void get(Bar<T> bar) { }
|
||||
}
|
||||
|
||||
class Foo<T,U> implements Base<U> {
|
||||
}
|
||||
Reference in New Issue
Block a user