mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
11 lines
212 B
Java
11 lines
212 B
Java
// "Replace with lambda" "true-preview"
|
|
class Test {
|
|
{
|
|
Comparable<String> c = new Compa<caret>rable<String>() {
|
|
@Override
|
|
public int compareTo(String o) {
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
} |