Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceWithConstantValue/afterSideEffect.java
Tagir Valeev 9ab2a2cd01 [mod-commands] Testing: declarative testing of multi-step actions
GitOrigin-RevId: d8c195494ae7973a44c1daf707fc38e6f76a7191
2023-07-21 11:17:31 +00:00

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;
}
}