Files
2022-09-26 17:31:54 +00:00

13 lines
269 B
Java

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