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