highlight enum with abstract methods until enum initializer is added

IDEA-184704
This commit is contained in:
Anna.Kozlova
2018-01-11 18:51:32 +01:00
parent 796d03edf9
commit d74021cd16
9 changed files with 24 additions and 18 deletions

View File

@@ -5,7 +5,7 @@ enum E {
public int foo() {
return 0;
}
};
}, B {};
public abstract int foo();
}

View File

@@ -1,6 +1,6 @@
// "Implement methods" "true"
enum E {
<caret>A;
<caret>A, B {};
public abstract int foo();
}