Files

14 lines
264 B
Java

// "Replace '(FooBar)foo' with 'foobar'" "false"
class FooBar {
public int baz;
int method(Object foo) {
FooBar foobar = (FooBar)foo;
for (int i = 0; i < 10; i++) {
baz = ((FooBar<caret>)foo).baz;
foobar = null;
}
return -1;
}
}