mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: 60897925141f7c805fc154de413c287c89b99acc
10 lines
125 B
Java
10 lines
125 B
Java
// "Reuse previous variable 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(int i) {
|
|
int h = 7;
|
|
}
|
|
}
|
|
|