Fix conversion of assignment as expression in J2K
Blockless if's and so with assignment as expression inside should turn into blockful #KT-16816 fixed
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
public class SomeClass {
|
||||
int a;
|
||||
int b;
|
||||
void doSomeWhile(int i) {
|
||||
while (i < 0)
|
||||
a = b = i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user