blob: 28c88d1df7b57163c1d28d9d7a6258347cb8df02 [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 ((FooBar<caret>)foo).baz;
}
}