mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
16 lines
253 B
Java
16 lines
253 B
Java
// "Create method 'run'" "true-preview"
|
|
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();
|
|
}
|
|
};
|
|
}
|
|
} |