Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterStaticMethodNotInInterface.java
2013-05-06 20:55:21 +02:00

11 lines
157 B
Java

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