mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
11 lines
212 B
Java
11 lines
212 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;
|
|
|
|
a = (a + b)<caret> - (b = a);
|
|
}
|
|
} |