mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 21:09:47 +07:00
GitOrigin-RevId: 71d783efd5095b0995ac1788863c8a50de759f77
13 lines
217 B
Java
13 lines
217 B
Java
// "Remove local variable 'oo'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
boolean k = new File("1.tmp").delete();
|
|
private int run() {
|
|
Object <caret>oo = (Object) new a();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|