mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
12 lines
200 B
Java
12 lines
200 B
Java
// "Remove local variable 'o1'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
|
|
private int run() {
|
|
/*ddddd*/
|
|
Object oo = (Object) new Integer(0);
|
|
return 0;
|
|
}
|
|
} |