mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
13 lines
246 B
Java
13 lines
246 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "true"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
foobar = null;
|
|
foo = null;
|
|
foobar = (FooBar)foo;
|
|
return ((FooBar<caret>)foo).baz;
|
|
}
|
|
} |