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