mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Fixes IDEA-344453 Intellij should not try to initialize an Optional var with null GitOrigin-RevId: 8097988bf1335a282138e8d09e350c3a5f65204d
16 lines
166 B
Java
16 lines
166 B
Java
interface A
|
|
{
|
|
abstract String foo();
|
|
}
|
|
|
|
interface B
|
|
{
|
|
abstract Object foo();
|
|
}
|
|
|
|
class C implements A, B
|
|
{
|
|
public String foo() {
|
|
return "";
|
|
}
|
|
} |