blob: 3e55d37d9b6fa0a04948022cb3a756b4a3091e82 [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;
foo = null;
}
}