mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
6e8742ed2a
GitOrigin-RevId: 3d20d29f9b7e2f0a3a989991af2788572449b0de
13 lines
191 B
Java
13 lines
191 B
Java
// "Remove local variable 'oo'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private int run() {
|
|
Object o1 = /**fffff*/ this /*ddddd*/<caret>, i = null;
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|