mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
172 B
Java
12 lines
172 B
Java
// "Replace with qualifier" "false"
|
|
class A implements Runnable {
|
|
public void run() {}
|
|
}
|
|
|
|
class B extends A {
|
|
void f(Runnable r) {}
|
|
|
|
{
|
|
f(super::ru<caret>n);
|
|
}
|
|
} |