mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
240 B
Java
16 lines
240 B
Java
public class Scr10884 {
|
|
int foo() {
|
|
return 1;
|
|
}
|
|
Y bar() {
|
|
return new Y(<caret>foo()) {
|
|
};
|
|
}
|
|
}
|
|
|
|
class Y {
|
|
Y(int x) {}
|
|
int foo() {
|
|
return 2;
|
|
}
|
|
} |