mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
12 lines
239 B
Java
12 lines
239 B
Java
// "Replace '(FooBar)foo' with 'foobar2'" "true"
|
|
|
|
class FooBar {
|
|
public int baz;
|
|
|
|
int method(Object foo) {
|
|
FooBar foobar = (FooBar)foo;
|
|
foobar = null;
|
|
FooBar foobar2 = (FooBar)foo;
|
|
return ((FooBar<caret>)foo).baz;
|
|
}
|
|
} |