disable override method from abstract class intention for static methods (IDEA-98006)

This commit is contained in:
anna
2012-12-28 15:32:07 +01:00
parent 2314e6b865
commit e8d6602585
2 changed files with 7 additions and 1 deletions
@@ -0,0 +1,6 @@
// "Override method 'foo'" "false"
abstract class Test {
protected static void fo<caret>o(){}
}
class TImple extends Test {}