mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
IDEA-323888 Replace 'side effect' dialog in Java quick-fixes with chooser GitOrigin-RevId: c89ef0ad65e69348de86e10a20686dbf9f8e0d57
11 lines
222 B
Java
11 lines
222 B
Java
// "Remove local variable 'problematic'" "true-preview"
|
|
class C {
|
|
native int foo();
|
|
|
|
void case01() {
|
|
for(int i = 10; i > 0; foo(), foo()) {
|
|
System.out.println("index = " + i);
|
|
}
|
|
}
|
|
}
|