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