mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 02:36:56 +07:00
10 lines
131 B
Java
10 lines
131 B
Java
// "Make 'a' extend 'b'" "true-preview"
|
|
class a {
|
|
void f(b b, Runnable r) {
|
|
f(<caret>this, null);
|
|
}
|
|
}
|
|
class b {
|
|
}
|
|
|