mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
12 lines
178 B
Java
12 lines
178 B
Java
// "Replace with qualifier" "true-preview"
|
|
class A implements Runnable {
|
|
public void run() {}
|
|
}
|
|
|
|
class B extends A {
|
|
void f(Runnable r) {}
|
|
|
|
{
|
|
f(this::ru<caret>n);
|
|
}
|
|
} |