mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 22:54:29 +07:00
IJ-CR-101642 GitOrigin-RevId: ed911621e808a7bf1ceff70a321685df424e3ec1
10 lines
141 B
Java
10 lines
141 B
Java
// "Make 'a' extend 'b'" "true-preview"
|
|
class a extends b <caret>{
|
|
void f(b b, Runnable r) {
|
|
f(this, null);
|
|
}
|
|
}
|
|
class b {
|
|
}
|
|
|