mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
11 lines
202 B
Java
11 lines
202 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "false"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
foo = null;
|
|
return ((FooBar<caret>)foo).baz;
|
|
}
|
|
} |