mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
11 lines
130 B
Java
11 lines
130 B
Java
// "Make 'b' extend 'a'" "true-preview"
|
|
class a {
|
|
void f(a a) {
|
|
b b = null;
|
|
f(<caret>b);
|
|
}
|
|
}
|
|
class b {
|
|
}
|
|
|