Files
Bas Leijdekkers e476515b6b Java: better name for quick fix
GitOrigin-RevId: 60897925141f7c805fc154de413c287c89b99acc
2023-02-23 18:40:00 +00:00

10 lines
125 B
Java

// "Reuse previous variable 'i'" "true-preview"
import java.io.*;
class a {
void f(int i) {
int h = 7;
}
}