veryl icon indicating copy to clipboard operation
veryl copied to clipboard

Check overlapping of multiple partial assignment

Open dalance opened this issue 8 months ago • 0 comments

Multiple assignment by partial assignment is not checked yet like below. This is because it requires parameter evaluation.

assign a[0] = 1;
assign a[0] = 0;

assign a[0] = 1;
assign a[X] = 0; // what is X?

Related: #739

dalance avatar May 31 '24 03:05 dalance