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

13 lines
252 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;
//comment
return foobar2.baz;
}
}