mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
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() {
|
|
|
|
}
|
|
} |