mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 11:49:20 +07:00
e5fd0db64d
GitOrigin-RevId: 9121bbda07694cdacab3508a83a08ba10e465d28
20 lines
310 B
Java
20 lines
310 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.run();
|
|
}
|
|
};
|
|
}
|
|
|
|
private void run() {
|
|
<selection></selection>
|
|
}
|
|
} |