mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
10 lines
131 B
Java
10 lines
131 B
Java
// "Reuse previous variable 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(int i) {
|
|
i = 234 / 5 + 7;
|
|
}
|
|
}
|
|
|