mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
13 lines
234 B
Java
13 lines
234 B
Java
// "Replace '(FooBar)foo' with 'foobar'" "true"
|
|
|
|
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;
|
|
}
|
|
} |