IDEA-136406 Complete current statement doesn't insert a method body for default methods, creates broken code

This commit is contained in:
peter
2015-02-13 18:39:30 +01:00
parent edc45484d9
commit 5ea85b6d84
6 changed files with 24 additions and 8 deletions
@@ -0,0 +1,5 @@
public interface Foo {
default void foo() {
<caret>
}
}