blob: 616d26b0394f658b9cba2cfee4b9d10f58fa6e18 [file] [log] [blame]
// "Replace '(FooBar)foo' with 'foobar'" "true"
import java.lang.Object;
class FooBar {
public int baz;
int method(Object foo) {
FooBar foobar = (FooBar)foo;
Object o = foobar.baz;
foobar = null;
}
}