Files

14 lines
256 B
Java

// "Replace '(FooBar)foo' with 'foobar'" "true-preview"
import java.lang.Object;
class FooBar {
public int baz;
int method(Object foo) {
FooBar foobar = (FooBar)foo;
Object o = ((FooBar<caret>)foo).baz;
foobar = null;
return 0;
}
}