blob: 52dab0f7f0ca312348dacf3efdece3e5d6b6f7ab [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.baz;
}
}