mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 17:20:55 +07:00
9 lines
195 B
Java
9 lines
195 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
class c {
|
|
String container;
|
|
void f() {<caret>
|
|
String parent;
|
|
if (container == null && (parent = null) != null && parent != null) {}
|
|
}
|
|
} |