mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 4e9a3f94cf1aedadd0b2c4699e168ccb3be0e405
11 lines
185 B
Java
11 lines
185 B
Java
// "Make 'a' implement 'java.lang.Runnable'" "true-preview"
|
|
class a implements Runnable {
|
|
void f(Runnable r) {
|
|
f(this);
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
|
|
}
|
|
} |