mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 04:14:34 +07:00
31fd8cfe08
IDEA-193066 check expected type as well by another expression
8 lines
142 B
Java
8 lines
142 B
Java
// "Create local variable 'a'" "true"
|
|
class C {
|
|
void foo(Foo f) {
|
|
<caret>a = f;
|
|
if (a != null && a.foo()) {}
|
|
}
|
|
}
|
|
class Foo {} |