mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
1. Properly forward the AnalysisCancelledException 2. Allow inlining of never overwritten variable in the presence of syntax errors Fixes IDEA-336815 "Inline variable" misleading error message when compile-errors are present GitOrigin-RevId: 7510d497fce2dcd4bef38482cfadf162d47cc2c0
12 lines
218 B
Java
12 lines
218 B
Java
public class CompilationError {
|
|
|
|
public void test() {
|
|
public static void main(String[] args) {
|
|
int inlineMe = 2;
|
|
<caret>inlineMe = 3; // inline
|
|
int dd = 4 + inlineMe;
|
|
|
|
"Error".
|
|
}
|
|
}
|
|
} |