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

16 lines
266 B
Java

// "Create method 'f'" "true"
class A {
{
new Runnable() {
public void run() {
B.f(this);
}
};
}
}
class B {
public static void f(Runnable runnable) {
<caret><selection></selection>
}
}