mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
12 lines
166 B
Java
12 lines
166 B
Java
// "Replace with qualifier" "true-preview"
|
|
class A implements Runnable {
|
|
public void run() {}
|
|
}
|
|
|
|
class B extends A {
|
|
void f(Runnable r) {}
|
|
|
|
{
|
|
f(this);
|
|
}
|
|
} |