mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 19:36:56 +07:00
13 lines
171 B
Java
13 lines
171 B
Java
// "Remove local variable 'i'" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
int k;
|
|
private void run() {
|
|
k = 9;
|
|
while (1 > 0) ;
|
|
for (;; ) ;
|
|
}
|
|
}
|
|
|