mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
13 lines
208 B
Java
13 lines
208 B
Java
// "Remove variable 'oo'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private int run() {
|
|
Object o1 = /**fffff*/ this, /*ddddd*/<caret>oo = (Object) new Integer(0);
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|