Files
openide/java/java-tests/testData/refactoring/inlineLocal/CompilationErrorAtRef.java.after
Tagir Valeev fd00898d32 [java-refactoring] Inline variable: fix CompilationError test; support inline at ref in the presence of compilation error
Improves IDEA-336815 "Inline variable" misleading error message when compile-errors are present

GitOrigin-RevId: 6e443a44c4ccf8a65d10f4f83665cfe2641282b0
2023-11-28 12:44:11 +00:00

9 lines
133 B
Plaintext

public class CompilationError {
public static void main(String[] args) {
// inline
int dd = 4 + 3;
"Error".
}
}