mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
18 lines
361 B
Java
18 lines
361 B
Java
// "Replace with method reference" "true-preview"
|
|
class Test {
|
|
interface Bar {
|
|
int compare(String o1, String o2);
|
|
}
|
|
static int c(String o1, String o2) {
|
|
return 0;
|
|
}
|
|
|
|
{
|
|
Bar bar2 = new B<caret>ar() {
|
|
@Override
|
|
public int compare(final String o1, final String o2) {
|
|
return c(o1, o2);
|
|
}
|
|
};
|
|
}
|
|
} |