Suggest j and k for int type

GitOrigin-RevId: 964e58ddcbf7920d18274be6e05df40088f9ed32
This commit is contained in:
Tagir Valeev
2020-06-11 13:19:43 +07:00
committed by intellij-monorepo-bot
parent 8af51fa572
commit ba72470db2
5 changed files with 13 additions and 9 deletions

View File

@@ -2,12 +2,12 @@
class X {
int m(int i) {
if (i > 0) {
int i1 = ++i;
if (i1 == 1) {
int j = ++i;
if (j == 1) {
System.out.println(1);
System.out.println(2);
} else if (i1 == 2) {
} else if (j == 2) {
System.out.println(2);
}
}