IDEA-112562 Pull up should allow to pull method body into interface as default method

This commit is contained in:
Anna Kozlova
2013-08-30 21:45:06 +04:00
parent 5426bcfd4d
commit 48205f5c1d
6 changed files with 59 additions and 13 deletions
@@ -0,0 +1,8 @@
interface Bar<T> { }
interface Base<T> {
default void get(Bar<T> bar) { }
}
class Foo<T,U> implements Base<U> {
}