blob: 443752fe6e7cf66abce005a52081e2caa4308bbf [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<caret>)foo).baz;
foobar = null;
}
}