mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
16 lines
245 B
Java
16 lines
245 B
Java
// "Create Method 'run'" "true"
|
|
class Bug {
|
|
|
|
interface Foo<X> {
|
|
void run(X x);
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Foo<Bug>() {
|
|
@Override
|
|
public void run(Bug o) {
|
|
o.ru<caret>n();
|
|
}
|
|
};
|
|
}
|
|
} |