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