mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
11 lines
135 B
Java
11 lines
135 B
Java
// "Make 'b' extend 'a'" "false"
|
|
class a {
|
|
void f(a a, b b) {
|
|
b b = null;
|
|
f(<caret>b, b);
|
|
}
|
|
}
|
|
interface b {
|
|
}
|
|
|