IDEA-137719 Complete current statement doesn't insert a method body for static methods in interfaces, creates broken code

This commit is contained in:
peter
2015-03-23 18:57:36 +01:00
parent 8e9aff7916
commit 4fc7acb38f
4 changed files with 10 additions and 2 deletions
@@ -0,0 +1,5 @@
public interface Foo {
static void foo() {
<caret>
}
}