Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/overrideMethod/beforeProtectedMethod.java
2012-02-21 13:49:39 +01:00

6 lines
110 B
Java

// "Override method 'foo'" "true"
class Test {
protected void f<caret>oo(){}
}
class TImple extends Test {}