mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
16 lines
274 B
Java
16 lines
274 B
Java
// "Create method 'f'" "true-preview"
|
|
class A {
|
|
{
|
|
new Runnable() {
|
|
public void run() {
|
|
B.f(this);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
class B {
|
|
public static void f(Runnable runnable) {
|
|
<caret><selection></selection>
|
|
}
|
|
}
|