blob: 1429bdcb780da4518b7479205d9d8e3b3543a170 [file] [log] [blame]
// "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;
}
}