mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Fixes IDEA-344453 Intellij should not try to initialize an Optional var with null GitOrigin-RevId: 8097988bf1335a282138e8d09e350c3a5f65204d
11 lines
195 B
Java
11 lines
195 B
Java
interface I<T> {
|
|
String foo(T x);
|
|
Object foo(String x);
|
|
}
|
|
|
|
class C implements I<String> {
|
|
@Override
|
|
public String foo(String x) {
|
|
<selection>return "";</selection>
|
|
}
|
|
} |