mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
12 lines
253 B
Java
12 lines
253 B
Java
// "Create method 'someMethod'" "true-preview"
|
|
public class Test {
|
|
|
|
public Object get() {
|
|
return new Object() {
|
|
public boolean equals(Object obj) {
|
|
return <caret>someMethod(this);
|
|
}
|
|
};
|
|
}
|
|
}
|