Java: Convert intention "Join Declaration And Assignment" into inspection - improved highlighting (IDEA-178919)

This commit is contained in:
Pavel Dolgov
2018-10-01 17:51:52 +03:00
parent 3dafef6aee
commit 0623c7b75f
15 changed files with 114 additions and 48 deletions
@@ -0,0 +1,8 @@
// "Join declaration and assignment" "false"
class T {
static int foo() {
int x, y;
<caret>x = y = 0;
return x + y;
}
}