mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
15 lines
193 B
Java
15 lines
193 B
Java
// "Create Method 'f'" "true"
|
|
class A {
|
|
{
|
|
f(A::foo);
|
|
}
|
|
|
|
private void f(Object foo) {
|
|
<selection></selection>
|
|
}
|
|
|
|
static int foo() {
|
|
return 42;
|
|
}
|
|
}
|