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