mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: 60897925141f7c805fc154de413c287c89b99acc
10 lines
137 B
Java
10 lines
137 B
Java
// "Reuse previous variable 'i'" "true-preview"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f(int[] i) {
|
|
int[] <caret>i = {};
|
|
}
|
|
}
|
|
|