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