mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
Improves IDEA-336815 "Inline variable" misleading error message when compile-errors are present GitOrigin-RevId: 6e443a44c4ccf8a65d10f4f83665cfe2641282b0
9 lines
161 B
Java
9 lines
161 B
Java
public class CompilationError {
|
|
|
|
public static void main(String[] args) {
|
|
int inlineMe = 3; // inline
|
|
int dd = 4 + <caret>inlineMe;
|
|
|
|
"Error".
|
|
}
|
|
} |