mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
13 lines
156 B
Java
13 lines
156 B
Java
// "Remove local variable 'oo'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private int run() {
|
|
new a();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|