Why is this an issue?

More than one case generate item was found to have the same value. The second case block will never be selected.

How to fix it

Code examples

Noncompliant code example

module fly;
  case (1)
    1: begin end
    1: begin end
  endcase
endmodule