mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
13 lines
142 B
Java
13 lines
142 B
Java
// "Remove variable 'oo'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private int run() {
|
|
new a();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|