mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
12 lines
157 B
Java
12 lines
157 B
Java
// "Remove variable 'i'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private void run() {
|
|
<caret>while (1 > 0) ;
|
|
for (;; ) ;
|
|
}
|
|
}
|
|
|