mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-28 17:29:55 +07:00
(cherry picked from commit 4e9a3f94cf1aedadd0b2c4699e168ccb3be0e405) IJ-CR-150708 GitOrigin-RevId: ced9d4595e513387ebf996bf8dd0894877ef0f3e
13 lines
202 B
Java
13 lines
202 B
Java
// "Make 'a' implement 'java.lang.Runnable'" "true-preview"
|
|
class a implements Runnable {
|
|
void f(Runnable r) {
|
|
f(this);
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
<caret>
|
|
}
|
|
}
|
|
|