mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
14 lines
197 B
Java
14 lines
197 B
Java
// "Remove variable 'i'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
private int run() {
|
|
<caret>int j;
|
|
int k = 9;
|
|
if (3 ==0) ;
|
|
else return k;
|
|
return 0;
|
|
}
|
|
}
|
|
|