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