mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
13 lines
225 B
Java
13 lines
225 B
Java
interface InspectionManager {
|
|
static InspectionManager getInstance() {
|
|
return null;
|
|
}
|
|
}
|
|
interface InspectionManagerEx extends InspectionManager {
|
|
}
|
|
|
|
class Test {
|
|
void m() {
|
|
InspectionManagerEx m1 = <caret>
|
|
}
|
|
} |