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:
@@ -0,0 +1,9 @@
|
||||
public class SomeClass {
|
||||
void doSomeIf(int i) {
|
||||
int a,b,c
|
||||
if (i < 0)
|
||||
a = b = i;
|
||||
else
|
||||
b = c = i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user