mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
204 B
Java
12 lines
204 B
Java
// "Replace with '0'|->Extract possible side effects" "true-preview"
|
|
import java.util.stream.*;
|
|
|
|
class Test {
|
|
public static void method() {
|
|
int a = 1;
|
|
int b = 0;
|
|
|
|
b = a;
|
|
a = 0;
|
|
}
|
|
} |