Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterStaticMethodNotInInterface.java
2014-12-06 12:06:31 +03:00

11 lines
157 B
Java

// "Create method 'f'" "true"
interface I {}
class A implements I {
{
A.f();
}
private static void f() {
<selection></selection>
}
}