mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
154 B
Java
9 lines
154 B
Java
class Foo {
|
|
interface X {
|
|
X getParent();
|
|
}
|
|
|
|
void test(X x1, X x2, boolean b) {
|
|
X x = (b ? x1 : x2).getParent();<caret>
|
|
}
|
|
} |