blob: ceecf01c2ccafc1179fda976aeeabdd878c21330 [file] [log] [blame]
// "Replace '(FooBar)foo' with 'foobar'" "true"
class FooBar {
public int baz;
int method(Object foo) {
foo = null;
FooBar foobar = (FooBar)foo;
return ((FooBar<caret>)foo).baz;
}
}