mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +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() {
|
|
|
|
}
|
|
} |