pull up default method: leave as is if pulled as abstract (IDEA-151756)

This commit is contained in:
Anna.Kozlova
2016-04-27 11:10:23 +02:00
parent 54f1e34d91
commit 1dc6f156cf
6 changed files with 42 additions and 2 deletions
@@ -0,0 +1,6 @@
interface A {}
interface B extends A {
default void f<caret>oo() {
System.out.println("in B");
}
}