mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 17:38:08 +07:00
IJ-CR-101642 GitOrigin-RevId: ed911621e808a7bf1ceff70a321685df424e3ec1
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 {
|
|
}
|
|
|