mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: 60897925141f7c805fc154de413c287c89b99acc
12 lines
188 B
Java
12 lines
188 B
Java
// "Reuse previous variable 'k'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(int i) {
|
|
final int k = 234/5+7;
|
|
int h = 7;
|
|
int <caret>k = 234/5+7;
|
|
}
|
|
}
|
|
|