mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
12 lines
192 B
Java
12 lines
192 B
Java
// "Reuse previous variable 'k' declaration" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(int i) {
|
|
final int k = 234/5+7;
|
|
int h = 7;
|
|
int <caret>k = 234/5+7;
|
|
}
|
|
}
|
|
|